指标色块分布及变化趋势趋势图

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
		    title: {
		        text: '指标色块分布及变化趋势趋势图'
		    },
		    tooltip : { 
		        trigger: 'item',
		        formatter: '{b}生产指标值 : {c}'
		    },
		    grid: {
		        left: '10%',
		        right: '10%',
		        bottom: '20%',
		        top:'10%',
		        containLabel: true, 
		    },
		    xAxis : [
		        {
		            name:'记录时间',
		            type : 'category',
		            boundaryGap : false,
		            data: ["2016-1", "2016-2", "2016-3", "2016-4", "2016-5", "2016-6", "2016-7"]
		            
		        }, 
		    ],
		    yAxis : [
		        {
		            name:'指标数据',
		            type : 'value',  
		            splitLine: {
		                lineStyle: {
		                    type: 'dashed',
		                    color:'white', 
		                    
		                }
		            },
		            data:['绿灯','黄灯', '红灯']
		            
		        }
		    ],
		    series : [ 
		        {
		            name:'绿灯',stack: '总量',
		            type:'line',smooth: true,  
		             symbolSize:0, 
		            areaStyle: {normal: {}}, 
		             itemStyle:{
		              normal:{
		                  color:'green', 
		              }  
		            },
		            label:{
		              normal:{
		                  show:false
		              }  
		            },
		            lineStyle:{
		              normal:{ 
		                  width:0
		              }  
		            },
		            data:[1, 0.9, 1, 1, 0.9, 1, 1]
		        },
		         {
		            name:'黄灯', 
		            type:'line',
		            smooth: true,  
		             symbolSize:0,
		            areaStyle: {normal: {}},
		            stack: '总量',
		             itemStyle:{
		              normal:{
		                  color:'orange', 
		              }  
		            },
		            lineStyle:{
		              normal:{ 
		                  width:0
		              }  
		            },
		            data:[0.5, 0.6, 0.4, 0.5, 0.5,0.4,0.4]
		        },
		        {
		            name:'红灯',stack: '总量',
		            type:'line',smooth: true,   
		            areaStyle: {normal: {}},
		            symbolSize:0,
		            itemStyle:{
		              normal:{
		                  color:'red', 
		              },
		            },
		            lineStyle:{
		              normal:{ 
		                  width:0
		              }  
		            }, 
		            data:[0.5, 0.5, 0.6, 0.5, 0.6, 0.6, 0.6]
		        }, 
		         {
		            name:'实际1',stack: '实际1',  
		             type:'line',smooth: true,  
		            lineStyle:{  
		              normal:{
		                  color:'white',
		                  width:2
		              },
		            },  
		            symbolSize:10,
		            itemStyle:{
		               normal:{
		                   color:'black'
		               }  
		            },
		            data:[0.8, 1, 2, 0.8, 1,1, 0.7],
		            markPoint: {
		                data: [
		                    {type: 'max', name: '最大值'}
		                ],
		                itemStyle:{
		                    normal:{
		                        color:'blue'
		                    }
		                }
		            },
		        },
		    ]
		};