在此示例之后,我尝试使用C3.js创建时间序列图,但是生成的图会创建黑色svg填充,这并不是我想要的。如何将fill属性设置为none?请参阅的代码stackblitz.com。
import * as c3 from 'c3';
const appDiv = document.getElementById('#app');
c3.generate({
bindto: appDiv,
data: {
x: 'x',
columns: [
['x', '2013-01-01', '2013-01-02', '2013-01-03', '2013-01-04', '2013-01-05', '2013-01-06'],
['data', 130, 340, 200, 500, 250, 350]
]
},
axis: {
x: {
type: 'timeseries',
tick: {
format: '%Y-%m-%d'
}
}
}
});
<div id="app"></div>
倚天杖
相关分类