我有一个简单的条形图,我无法将x轴标签置于实际列的中心。链接到screen shot here。任何帮助将不胜感激。
<div class="ct-chart" id="chart"></div>
<script>
new Chartist.Bar('#chart', {
labels: ['Saved', 'Goal'],
series: [
[6000, 10000]
]
}, {
stackBars: true,
width: 300,
height: 250,
axisX: {
textAnchor: 'middle'
},
axisY: {
labelInterpolationFnc: function(value) {
return (value / 1000) + 'k';
}
}
}).on('draw', function(data) {
if(data.type === 'bar') {
data.element.attr({
style: 'stroke-width: 70px'
});
}
});
</script>
答案 0 :(得分:0)
这不是Chrome的问题,所以除非有人知道如何让它在IE中运行,否则我会关闭这个问题。