讓下面的圖表http://c3js.org/samples/chart_bar.html 的舉個例子,但與下面的數據替換列中的數據:排除零個值
var chart = c3.generate({
data: {
columns: [
['data1', 30, 0, 100, 0, 150, 250],
['data2', 130, 0, 140, 200, 0, 50]
],
type: 'bar'
},
bar: {
width: {
ratio: 0.5 // this makes bar width 50% of length between ticks
}
// or
//width: 100 // this makes bar width 100px
}
});
setTimeout(function() {
chart.load({
columns: [
['data3', 130, -150, 200, 300, -200, 100]
]
});
}, 1000);
正如我們看到的,我們有很多的空白或零值酒吧,我們如何刪除它並刪除空白區域。 (不躲,我知道如何使用CSS隱藏)
Image example, what should be removed
你真的想在x-ticks之間有不同的空間嗎? [這裏](http://stackoverflow.com/questions/27469937/c3js-timeseries-x-values-not-evenly-spaced?rq=1) – vinjenzo
我不是,但客戶端想要:) –
沒有> [這] (http://stackoverflow.com/a/29450998/735725)<幫助? – vinjenzo