在chart.js条形图中,如何标记类别中的每个条形图?

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

如何为chart.js条形图标记类别中的每个条形图?

我有1个类别,该类别中有2个栏。我在条形图上使用渐变,这些只能应用于单个类别中的条形。

options = {
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero: true
                }
            }],
            xAxes: [{
                ticks: {
                    callback: (value, index, values) => {
                        console.log(value, index, values);
                    }
                }
            }]
        }
}

let ctx = this.bar.nativeElement.getContext('2d');

    let grad1 = ctx.createLinearGradient(0, 0, 0, 200);
    grad1.addColorStop(0, 'rgb(105,130,231)');
    grad1.addColorStop(1, 'rgb(125,222,238)');

    let grad2 = ctx.createLinearGradient(0, 0, 0, 200);
    grad2.addColorStop(0, 'rgb(233,105,210)');
    grad2.addColorStop(1, 'rgb(247,126,151)');

    this.barColors.push({backgroundColor: grad1, hoverBackgroundColor: grad1});
    this.barColors.push({backgroundColor: grad2, hoverBackgroundColor: grad2});

HTML:

<canvas #bar baseChart
        [datasets]="plotData"
        [labels]="l"
        [options]="options"
        chartType="bar"
        [colors]="barColors"
        (chartClick)="chartClicked($event)">
</canvas>
javascript chart.js
1个回答
0
投票

1)为类别中的每个条形为类别2)中的每个子类别设置2个标签,如果它与标签位置匹配则添加值,然后将0添加到与标签位置不匹配的替代子类别的值

这将生成一个条形图,其中每个类别只有1 bar的该子类别唯一的颜色渐变。

您可能需要调整条形大小,因为我只有2个子类别,我设置

scales: {
        xAxes: [{
            barPercentage: 8,
            categoryPercentage: 0.1
        }]
    }
}

并且它与类别标签一致,对我来说足够紧密。

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