option = {
yAxis: {
type: 'value',
axisPointer: {
show: true,
type: 'line',
label: {
show: true,
precision: 2,
formatter: function (params) {
return 'Value: ' + params.value;
},
backgroundColor: 'rgba(50, 50, 50, 0.7)',
borderColor: '#333',
borderWidth: 1,
padding: [5, 10],
textStyle: {
color: 'white', // 文本颜色
fontSize: 12, // 文本字体大小
fontWeight: 'bold' // 文本粗细
}
},
lineStyle: {
color: 'red',
width: 2
}
},
// 其他 yAxis 相关配置...
},
// 其他配置项...
series: [
{
name: '示例系列',
type: 'bar',
data: [10, 20, 15, 25, 30]
}
// 其他系列...
]
};
在上面的代码中,通过在 textStyle 属性中设置文本样式,你可以配置坐标轴指示器文本标签的颜色 (color)、字体大小 (fontSize)、粗细 (fontWeight) 等。
你可以根据实际需求调整这些参数以满足你的设计要求。
转载请注明出处:http://www.zyzy.cn/article/detail/5219/ECharts