echart 填充颜色如何跟折点颜色一样

我图片圈起来的这两个颜色如何区分开来啊图片描述
我需要折点的颜色跟填充的颜色不一致
我的代码如下

        option = {
    tooltip : {
        trigger: 'axis',
     
    },
    label: {
    textStyle: {
        color: 'rgba(255, 255, 255, 0.3)'
    }
},
    toolbox: {
        show : true,
         axisPointer: {
            type: 'cross'
        },
        feature : {
           // mark : {show: true},
           // dataView : {show: true, readOnly: false},
           // magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
           // restore : {show: true},
           // saveAsImage : {show: true}
        }
    },
    calculable : true,
     
    xAxis : [
        {
            type : 'category',
            boundaryGap : false,
            data : data
        }
    ],
   grid: {
           'backgroundColor':'rgba(110,220,110,.5)',
           x:"50",
           y:'40',
           width:'924'
          
        },
     
    yAxis : [
        {
            type : 'value'
        }
    ],

    axisLabel:{
        textStyle:{
             color:"#333333"//x轴,y轴的数字颜色,如图1
        }
    },
    axisTick:
    {
        show: false,
    },

   
    series : [

        {
            name:'推广流量',
            type:'line',
            stack: '总量',
            itemStyle: {normal: {areaStyle: {type: 'default'}}},
             
              itemStyle: {
                normal: {

    textStyle: {
        color: 'rgba(25, 25, 20, 1)'
    },

        color: {
        type: 'linear',
        x: 0,
        y: 0,
        x2: 0,
        y2: 1,
        colorStops: [{
        offset: 1, color: '#fefeff' // 0% 处的颜色
    }, {
        offset: 0.4, color: '#e8efff' // 100% 处的颜色
    }],
    globalCoord: true // 缺省为 false
},
  label: {
                normal: {
                    textStyle: {
                        color: 'rgba(255, 255, 255, 0.3)'
                    }
                }
            },
            labelLine: {
                normal: {
                    lineStyle: {
                        color: 'rgba(255, 255, 255, 0.3)'
                    }
                }
            },
                     areaStyle: {normal: {}},
                    lineStyle:{  
                     color:'#f68698'  
                                    }  
                }
            },

            data:data_ll
        },
       
    ]
};
阅读 2.4k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进