Angular - ChartJS - 条形图 - 第一个标签未显示在 X 轴上

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

我正在尝试使用 chartJS 和 Angular 绘制条形图。 为此,我将 X 轴值分组,以便它只显示年份。

但我每次都错过了第一年。这意味着在上述情况下,我有 2022 年和 2023 年的记录,但图表只会显示 2023 年。

此行为背后的原因是我没有 2022 年 1 月 1 日的数据。但我需要将 2022 也作为 X 轴的标签包含在内。我尝试添加

bounds: 'ticks'
但它在左侧和右侧显示空白(从2022年的第一天开始考虑)

是否可以选择不包含空格来显示标签? 您能提供的任何帮助将不胜感激。

angular chart.js
1个回答
0
投票

一个可能的解决方案是将

time.unit
设置为
"month"
并使用
ticks.callback
使(
return ''
)除了每年的第一个标签之外的所有标签都无效。

这是一个非反应片段,说明了这个想法:

const nPoints = 366,
    t0 = Date.now()-366*24*3600*1000,
    dt = 24*3600*1000;
const ctx = document.getElementById('canvasChart').getContext("2d");

let data = Array.from(
    {length: nPoints},
    (_, i)=>({
        datetime: t0 + dt*i,
        value: 10+4*Math.sin(i*Math.PI*3/nPoints)+
            3*Math.random() + (Math.random() < 0.05 ? 5*Math.random() : 0)
    })
);

const yearsWithLabel = [];
const config = {
    type: 'bar',
    data: {
        datasets:[{
            data,
            borderWidth: 1
        }]
    },
    options: {
        parsing: {
            xAxisKey: 'datetime',
            yAxisKey: 'value'
        },
        scales:{
            x:{
                type: 'time',
                grid:{
                    display: false
                },
                ticks:{
                    maxRotation: 0,
                    callback(val, index){
                        if(index === 0){
                            yearsWithLabel.splice(0);
                        }
                        const date = new Date(val),
                            yr = date.getFullYear();
                        if(yearsWithLabel.includes(yr)){
                            // if there's already a label for this year
                            return '';
                        }
                        yearsWithLabel.push(yr);
                        // you may want to add the month, otherwise one may think
                        // the interval between the labels 2022 and 2023 is one year:
                        // return date.toLocaleDateString(undefined, {year: 'numeric', month: "short"})
                        return date.toLocaleDateString(undefined, {year: 'numeric'})
                    }
                },
                time: {
                    unit: 'month',
                }
            }
        },
        plugins: {
            legend:{
                display: false
            }
        }
    },
};
new Chart(ctx, config);
<div style="width:90vw;height:90vh">
<canvas id="canvasChart" ></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns"></script>

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