其他分享
首页 > 其他分享> > echarts修改分割线样式

echarts修改分割线样式

作者:互联网

xAxis: {
  splitLine:{
     show: ture, // 是否显示x轴分割线
     interval: 'auto', // 坐标轴分隔线的显示间隔
     lineStyle: {
     	color: ['#ccc'], // 分隔线颜色。
     	width: 1, // 分隔线线宽
     	type: 'dashed', // 线的类型
     	opacity: 1 // 图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。
     }
   }
 },
 yAxis: {
  splitLine:{
     show: ture, // 是否显示y轴分割线
     interval: 'auto', // 坐标轴分隔线的显示间隔
     lineStyle: {
     	color: ['#ccc'], // 分隔线颜色。
     	width: 1, // 分隔线线宽
     	type: 'dashed', // 线的类型
     	opacity: 1 // 图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。
     }
   }
 },

标签:show,样式,splitLine,分隔线,color,图形,分割线,echarts
来源: https://blog.csdn.net/Misnice/article/details/122732500