echarts 設定橫軸標線的樣式(X軸最底部一根除外)

龙卷风吹毁停车场發表於2024-03-15

option = {
  yAxis: {
    splitLine:{
     lineStyle:{
       type:'dashed',//y軸分割線型別 dashed為虛線
       color:'red'
     }
   },
    type: 'value'
  }
};

相關文章