我注意到默认的条形图始终具有较深的零线。我还注意到-1.0处的水平线也更暗。我希望这些颜色与网格相同。我该怎么办?
此处显示了一个简单的示例: https://jsfiddle.net/Lnv3cmz0/1/
Vue.component('chart', {
template:`
<canvas></canvas>
`,
props:['type'],
mounted(){
this._chart = new Chart(this.$el, {
type:this.type,
data:[],
})
},
})
//App setup
new Vue({
el:'#vue',
})
答案 0 :(得分:0)
答案是GridLines中的zeroLineColor https://www.chartjs.org/docs/latest/axes/styling.html#grid-line-configuration