option = {
yAxis: {
type: 'value',
axisLine: {
show: true, // 是否显示 y 轴轴线
lineStyle: {
color: 'red', // 轴线颜色
width: 2, // 轴线宽度
type: 'dashed' // 轴线类型,可选值为 'solid'、'dashed'、'dotted'
}
},
// 其他 yAxis 配置项可以根据需要添加
},
xAxis: {
type: 'category',
data: ['A', 'B', 'C', 'D', 'E'],
},
series: [
{
type: 'bar',
data: [10, 20, 15, 25, 30]
}
]
};
在上述示例中,axisLine 属性用于配置 y 轴轴线的样式。show 属性控制是否显示轴线,lineStyle 属性用于设置轴线的颜色、宽度和类型。
根据实际需求,你可以调整这些属性以满足你的设计要求。
转载请注明出处:http://www.zyzy.cn/article/detail/5205/ECharts