Echarts 使用视觉映射组件(visualMap)

// 若是图形出不来  把时间格式调整一下

const time = new Date('2010-01-01 00:00:00');

const data = [];

const data1 = [];

for (let i = 0; i < 12; ++i) {

    data.push([time.getTime(), i * 10 + Math.random() * 100]);

    data1.push([time.getTime(), i * 10 + Math.random() * 100]);

    time.setMonth(time.getMonth() + 1);

}

option = {

    title: {

        text: 'Apache ECharts 4.x Default Time Axis Labels'

    },

    xAxis: {

        type: 'time'

    },

    yAxis: {

        type: 'value'

    },

    visualMap:[

        {

                show: false,

                dimension: 0,

                seriesIndex:0,

                pieces: [

                        { gte: 1264953600000, lte: 1270051200000, color: 'transparent' }

                ],

                outOfRange: {

                    color: 'red'

                }

    },

    {

        show: false,

        dimension: 0,

        seriesIndex:1,

        pieces: [

                { gte: 1275321600000, lte: 1280592000000, color: 'transparent' }

        ],

        outOfRange: {

            color: 'blue'

        }

    }

    ],

    series: [{

        type: 'line',

        data: data

    },

    {

        type: 'line',

        data: data1

    }

    ]

};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值