亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

javascript - When the difference in echarts data is very small, make a very obvious trend chart. Which parameter should be controlled?
天蓬老師
天蓬老師 2017-06-14 10:53:22
0
1
868
option = {
    title: {
        text: '堆疊區(qū)域圖'
    },
    tooltip : {
        trigger: 'axis',
        axisPointer: {
            type: 'cross',
            label: {
                backgroundColor: '#6a7985'
            }
        }
    },
    legend: {
        data:['聯(lián)盟廣告']
    },
    toolbox: {
        feature: {
            saveAsImage: {}
        }
    },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    xAxis : [
        {
            type : 'category',
            boundaryGap : false,
            data : ['周一','周二','周三','周四','周五','周六','周日']
        }
    ],
    yAxis : [
        {
            type : 'value'
        }
    ],
    series : [
        {
            name:'聯(lián)盟廣告',
            type:'line',
            stack: '總量',
            areaStyle: {normal: {}},
            data:[220, 220.1, 220.2, 220.2, 220.3, 220.4, 310]
        },

    ]
};

The difference in quantity is all after the decimal point. Basically, there is no difference in this picture. Which parameter can be controlled to amplify this difference

Make it similar to this one with a relatively large gap


Thank you

天蓬老師
天蓬老師

歡迎選擇我的課程,讓我們一起見證您的進(jìn)步~~

reply all(1)
扔個(gè)三星炸死你

Find the minimum value of the data and set the y-axis minimum value to the minimum value of your data

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template