option = {
// 其他配置项...
tooltip: {
show: true,
textStyle: {
color: 'white', // 文字颜色
fontSize: 14, // 文字字号
fontWeight: 'bold' // 文字粗细
// 其他文字样式属性...
},
// 其他配置项...
},
series: [{
type: 'bar',
data: [10, 20, 30, 40, 50]
// 其他系列配置...
}],
// 其他配置项...
};
在上述示例中,tooltip 的 textStyle 属性用于设置提示框组件文字的样式。你可以根据需要调整 color(文字颜色)、fontSize(文字字号)、fontWeight(文字粗细)等属性。
确保查看你所使用的 ECharts 版本的文档,以获取准确的配置信息。在不同版本中可能会有一些差异。
转载请注明出处:http://www.zyzy.cn/article/detail/5302/ECharts