Ox.Chart: make sure bars are at least 1px wide

This commit is contained in:
rlx 2012-10-24 12:31:32 +00:00
parent cc4b2824e0
commit 619f498dae

View file

@ -152,7 +152,7 @@ Ox.Chart = function(options, self) {
function getWidths(values) {
var max, maxKeys,
total = Ox.sum(values),
totalWidth = Math.round(total / self.max * self.valueWidth),
totalWidth = Math.ceil(total / self.max * self.valueWidth),
widths = {};
Ox.forEach(values, function(value, key) {
widths[key] = Math.round(value / total * totalWidth);
@ -202,7 +202,7 @@ Ox.Chart = function(options, self) {
+ ' (' + Ox.formatPercent(value * self.options.rows, self.sum, 2) + ')'
})
.css({
width: Math.round(value / self.max * self.valueWidth) + 'px',
width: Math.ceil(value / self.max * self.valueWidth) + 'px',
height: '14px',
borderRadius: '4px',
marginLeft: '-4px'