产邀配色

描述:当前是关于Echarts图表中的 示例。
 
            option = {
    title: {
        text: '产邀配色'
    },
    legend: {
        data:['线_本月累计','线_上月同期累计','线_目标','柱_本月','柱_上月同期']
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    backgroundColor:'#FFFFFF',
    yAxis: {},
    series:
    [
    {
        name:'线_本月累计',
        type: 'line',
        data:[38,142,146,168,188,190,454],
        color:'#FF3100'
    },
    {
        name:'线_上月同期累计',
        type: 'line',
        data:[420, 500, 600, 700, 800, 900, 950],
        color:'#FFB700'
    },
    {
        name:'线_目标',
        type: 'line',
        data:[440, 532, 610, 740, 800, 910, 960],
        color:'#FF8E73',
        smooth:false, 
        itemStyle:
        {
            normal:{
                lineStyle:
                {
                width:3,
                type:'dotted'
                }
                   }
         }
    },
    {
        name:'柱_上月同期',
        type: 'bar',
        data:[240, 187, 199, 264, 390, 340, 320],
        color:'#DCF8DC'
    },
    {
        name:'柱_本月',
        type: 'bar',
        data:[240, 187, 199, 264, 390, 340, 320],
        color:'#ADEBAD'//0098d9
    }
    ]
};