1
下面是一些包含兩個圖表的簡單代碼:JSFiddle ticks屬性適用於折線圖,但不適用於條形圖。有趣的是,當在Chartist網站上發佈時(在示例部分中),它可以正常工作。但我真的需要讓它在我的.js文件中工作。Ticks屬性在chartist.js中不起作用
new Chartist.Bar(
'#barChart',
{
labels: ['Week 1', 'Week 2', 'Week 3', 'Week 4', 'Week 5'],
series: [
{name: 'one', data: [5, 6, 8, 9, 5]},
{name: 'two', data: [4, 5, 6, 5, 4]},
{name: 'three', data: [2, 4, 5, 2, 1]}
]
},
{
width: 565,
height: 200,
axisY: {
type: Chartist.FixedScaleAxis,
low: 0,
high: 10,
ticks: [0, 5, 10] // the ticks don't show up
}
}
);
謝謝。它也在我的項目中工作:) – Mariusz