2 回答
TA贡献1906条经验 获得超3个赞
您可以更改图表多个部分的颜色:
GridLines(图表中的垂直或水平线):
gridLines: {
color: '#5555ff'
}
蜱(你说的数字):
ticks: {
fontColor: '#5555ff'
},
ScaleLabels(轴的名称及其值):
scaleLabel: {
fontColor: '#5555ff'
}
这些都是您可以在轴的选项中指定的选项。
options: {
scales: {
xAxes: [{
// You insert the above code here
]}
}
}
编辑:这是我用我使用的代码描述的选项的图片:
xAxes: [{
ticks: {
fontColor: 'red'
},
gridLines: {
color: 'blue'
},
scaleLabel: {
display: true,
labelString: 'Employee',
fontSize: 20.0,
fontColor: 'green'
}
}]
TA贡献1783条经验 获得超4个赞
试试这个
...
options: {
scales: {
yAxes: [{gridLines: { color: "#ffffff" },
scaleLabel: {
display: true,
fontColor:'#ffffff',
fontSize:12
},}]
}
}
..
添加回答
举报