gpt4 book ai didi

chart.js - 如何设置折线图的chart.js网格颜色

转载 作者:行者123 更新时间:2023-12-02 20:22:22 26 4
gpt4 key购买 nike

我想使用选项字段更改折线图的网格颜色,但我不知道从哪里开始。我首先尝试使用渐变来更改 Canvas 背景颜色,但结果并不好。

canvas{
background:linear-gradient(top, #ea1a07 0%, #f4b841 75%,#f2dd43 100%);
}

但是,我没有得到我想要的,因为正如您在上图中看到的,不仅网格被着色,而且 x 值、y 标签和图表图例也被着色。

Picture of the result I'm getting with this css code

Example of what I want to get

我的chart.js选项是

options = {
scales: {
xAxes: [{
gridLines: {
color: 'rgba(171,171,171,1)',
lineWidth: 1
}
}],
yAxes: [{
ticks: {
beginAtZero: true,
max: 100,
min: 0,
stepSize: 10
},
gridLines: {
color: 'rgba(171,171,171,1)',
lineWidth: 0.5
}
}]
},
responsive: true
};

那么,有没有办法只将网格的背景设置为 3 种不同的颜色(带渐变或不带渐变)?注意:我正在使用带有 Angular 2 (ng2-charts) 的 Chart.js

最佳答案

最简单的方法是使用 chartjs-plugin-annotation 插件并配置绑定(bind)到 Y 轴的 3 个框注释(每个框将具有不同的颜色)。

下面是一个示例(您可以使用 codepen 来查看它的实际效果)。

var ctx = document.getElementById("myChart");
var myChart = new Chart(ctx, {
type: 'line',
data: {
datasets: [{
label: 'Points',
data: [
{x: 0, y: 2},
{x: 1, y: 3},
{x: 2, y: 2},
{x: 1.02, y: 0.4},
{x: 0, y: -1}
],
backgroundColor: 'rgba(123, 83, 252, 0.8)',
borderColor: 'rgba(33, 232, 234, 1)',
borderWidth: 1,
fill: false,
}],
},
options: {
title: {
display: true,
text: 'Chart.js - Gridline Background',
},
scales: {
xAxes: [{
type: 'linear',
position: 'bottom',
ticks: {
min: -1,
max: 8,
stepSize: 1,
fixedStepSize: 1,
},
gridLines: {
color: 'rgba(171,171,171,1)',
lineWidth: 1
}
}],
yAxes: [{
afterUpdate: function(scaleInstance) {
console.dir(scaleInstance);
},
ticks: {
min: -2,
max: 4,
stepSize: 1,
fixedStepSize: 1,
},
gridLines: {
color: 'rgba(171,171,171,1)',
lineWidth: 0.5
}
}]
},
annotation: {
annotations: [{
type: 'box',
yScaleID: 'y-axis-0',
yMin: 1,
yMax: 4,
borderColor: 'rgba(255, 51, 51, 0.25)',
borderWidth: 2,
backgroundColor: 'rgba(255, 51, 51, 0.25)',
}, {
type: 'box',
yScaleID: 'y-axis-0',
yMin: -1,
yMax: 1,
borderColor: 'rgba(255, 255, 0, 0.25)',
borderWidth: 1,
backgroundColor: 'rgba(255, 255, 0, 0.25)',
}, {
type: 'box',
yScaleID: 'y-axis-0',
yMin: -2,
yMax: -1,
borderColor: 'rgba(0, 204, 0, 0.25)',
borderWidth: 1,
backgroundColor: 'rgba(0, 204, 0, 0.25)',
}],
}
}
});

需要注意的是,注释绘制在图表的顶部,因此您的注释颜色需要包含一定的透明度才能看到其后面的内容。

将此插件与 ng2-charts 一起使用没有问题。只需将源添加到 <script> 中即可在应用程序的 html 文件中添加 annotation属性(property)进入您的options目的。这是 Angular2/ng2-charts example演示如何使用注释插件。

关于chart.js - 如何设置折线图的chart.js网格颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43100343/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com