chart.js之棒具有非均匀的宽度

问题描述 投票:0回答:1

我有一个简单的柱状图,但每一个酒吧都有不同的宽度。有没有什么办法让酒吧的宽度均匀一致的x轴单位/发车间隔?

Non uniform widths

这是我的表是如何定义的:

var chart = new Chart(ctx, {
        type: 'bar',
        data: chartData,
        options: {
            annotation: {
                annotations: []
            },
            legend: {
                display: false
             },
            scales: {
                xAxes: [{
                    type: 'time',
                    time: {
                        unit: 'day',
                        stepSize: 1,
                    },
                    ticks: {
                        maxTicksLimit: 21,
                        autoSkip: true
                    }
                }]
            }
        }
    });
chart.js chart.js2
1个回答
0
投票

原来我chart.js之版本是略显过时。之后我与最新版本(2.7.3)取代了它的酒吧突然看起来很好。

问题解决了 :-)

© www.soinside.com 2019 - 2024. All rights reserved.