echarts加阈值,上限下限虚线

option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
   series: [{
        data: [820, 932, 901, 934, 1290, 1330, 1320],
        type: 'line',
        markLine : {
   symbol:"none",           //去掉警戒线最后面的箭头
   label:{
       position:"end"  //三个值“start”,"middle","end"  开始  中点 结束
        },
             data : [
               {
    silent:false,    //鼠标悬停事件  true没有,false有
    lineStyle:{      //警戒线的样式  ,虚实  颜色
                      type:"dotted",   // type: 'solid'  //'dotted'虚线 'solid'实线
       color:"green",
       borderWidth:8,
       },
     label:{show:true,position:'end',formatter:'报警值'+800},
     yAxis:800 
    },
    {
    silent:false,    //鼠标悬停事件  true没有,false有
    lineStyle:{      //警戒线的样式  ,虚实  颜色
                      type:"dotted",   // type: 'solid'  //'dotted'虚线 'solid'实线
       color:"green",
       borderWidth:8,
       },
     label:{show:true,position:'end',formatter:'报警值'+800},
     yAxis:500 
    },
    ]
         }
    }]
};

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.duanlonglong.com/qdjy/1194.html