v-charts 修改文本颜色

时间:2022-07-26
本文章向大家介绍v-charts 修改文本颜色,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。
<ve-candle :extend=”chartExtend”></ve-candle>
this.chartExtend = {
 ‘xAxis.0.axisLabel.rotate’: 45, //x轴文本倾斜
 ‘xAxis.0.axisLabel.color’: ‘white’, //x轴文本颜色
 ‘yAxis.0.axisLabel.color’: “white”, //y轴文本改变颜色
 legend: {
 textStyle: {
 color: ‘white’,
 }
 }
 };