option = {
polar: {
radius: '80%', // 极坐标半径
},
angleAxis: {
type: 'value', // 角度轴类型为数值型
axisLabel: {
show: true,
color: '#666', // 文本颜色
fontSize: 12, // 文本字体大小
fontWeight: 'bold', // 文本字体粗细
formatter: '{value}°', // 文本格式化,可以按需设置
},
},
// 其他配置项和数据可以根据实际需求添加
series: [
{
type: 'bar', // 示例柱状图
data: [1, 2, 3, 4, 5],
},
],
};
// 使用上述配置
myChart.setOption(option);
在上述例子中,通过 axisLabel 配置项,您可以设置文本的显示与否(show),文本颜色(color),文本字体大小(fontSize),文本字体粗细(fontWeight),以及文本的格式化(formatter)。这些属性可以根据您的需求进行调整。请注意,上述配置是基于极坐标图表的例子,实际中您可能需要根据您的图表类型和需求进行相应的调整。
转载请注明出处:http://www.zyzy.cn/article/detail/5271/ECharts