停用(类型:“条形图”图表)值为null或为空-在chartjs中

时间:2019-03-11 15:53:12

标签: chart.js

当图表具有空白图表或面包屑图表时,我想隐藏该部分,以便为其他图表的宽度留出更多空间。

type: 'bar',
    data: {
        labels:["2018","2019",],
        datasets: [                    {
            label: '2018',
            data: [3864000,''],
            borderColor: '#DEB887',
            backgroundColor: '#DEB887',
            borderWidth: 2,
            fill: false

        },{

            label: '2019',
            data: [null,850000],
            borderColor: '#2F4F4F',
            backgroundColor: '#2F4F4F',
            borderWidth: 2,
            fill: false
        }]
    },

这是我当前的图表:

https://i.stack.imgur.com/jquI4.png

0 个答案:

没有答案