首页 > 其他 > 详细

echarts

时间:2019-09-28 23:29:37      阅读:122      评论:0      收藏:0      [点我收藏+]

1、实例一

option = {
    title: {
        text: ‘堆叠区域图‘
    },
    tooltip : {
        trigger: ‘axis‘,
        axisPointer: {
            type: ‘cross‘,
            label: {
                backgroundColor: ‘#6a7985‘
            }
        }
    },
    legend: {
        data:[‘邮件营销‘,‘联盟广告‘,‘视频广告‘,‘直接访问‘,‘搜索引擎‘]
    },
    grid: {
        left: ‘3%‘,
        right: ‘4%‘,
        bottom: ‘3%‘,
        containLabel: true
    },
    xAxis : [
        {
            type : ‘category‘,
            boundaryGap : false,
            splitLine:{
                show:true
            },
            show:false,
            data : [‘周一‘,‘周二‘,‘周三‘,‘周四‘,‘周五‘,‘周六‘,‘周日‘]
        }
    ],
    yAxis : [
        {
            type : ‘value‘,
            splitLine:{
                show:true
            },
            axisLabel:{
                show:false
            }
        }
    ],
    series : [
        {
            name:‘邮件营销‘,
            type:‘line‘,
            stack: ‘总量‘,
            areaStyle: {},
            lineStyle:{
              normal:{
                  color:‘yellow‘
              }  
            },
            data:[120, 132, 101, 134, 90, 230, 210]
        },
        {
            name:‘联盟广告‘,
            type:‘line‘,
            stack: ‘总量‘,
            areaStyle: {},
            lineStyle:{
              normal:{
                  color:‘red‘
              }  
            },
            data:[220, 182, 191, 234, 290, 330, 310]
        },
        {
            name:‘视频广告‘,
            type:‘line‘,
            stack: ‘总量‘,
            areaStyle: {},
            lineStyle:{
              normal:{
                  color:‘green‘
              }  
            },
            data:[150, 232, 201, 154, 190, 330, 410]
        },
        {
            name:‘直接访问‘,
            type:‘line‘,
            stack: ‘总量‘,
            areaStyle: {normal: {}},
            lineStyle:{
              normal:{
                  color:‘black‘
              }  
            },
            data:[320, 332, 301, 334, 390, 330, 320]
        },
        {
            name:‘搜索引擎‘,
            type:‘line‘,
            stack: ‘总量‘,
            label: {
                normal: {
                    show: true,
                    position: ‘top‘
                }
            },
            lineStyle:{
              normal:{
                  color:‘blue‘
              }  
            },
            areaStyle: {
                normal: {
                    color:‘orange‘
                }
            },
            data:[820, 932, 901, 934, 1290, 1330, 1320]
        }
    ]
};

 

echarts

原文:https://www.cnblogs.com/erdanyang/p/11605435.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!