如何更改Chart.js中特定y轴的颜色?

huangapple go评论59阅读模式
英文:

How to change the color of a specific y-axis in Chart.js?

问题

我正在使用 Chart.js 创建一条线图,显示两个具有不同y轴的数据集。我想要更改其中一个y轴的颜色。x轴包含测试数量,从1开始,因此x轴的第一个刻度是1,最后一个刻度因为我使用了 autoSkipmaxTicksLimit,所以有时不会位于第二个y轴上。

注意,我不想改变 gridLines 的颜色。

当前

如何更改Chart.js中特定y轴的颜色?

期望

如何更改Chart.js中特定y轴的颜色?

英文:

I'm working with Chart.js to create a line chart that displays two datasets with different y-axes. I want to change the color of one of the y-axes, The x-axis contains the no of tests which starts from 1, so the first tick in the x-axis is 1 and the final tick varies as I am using autoSkip with maxTicksLimit so sometimes the final tick doesn't lie on the second y-axis

const rootStyles = getComputedStyle(document.documentElement);
    const mainColor = rootStyles.getPropertyValue('--main-color');
    const subColor = rootStyles.getPropertyValue('--sub-color');
    const data = {
        labels: [] as number[],
        datasets: [
            {
                label: 'WPM',
                data: [] as number[],
                fill: true,
                backgroundColor: mainColor,
                borderColor: mainColor,
                lineTension: 0.4,
                yAxisID: 'y',
            },
            {
                label: 'Accuracy',
                data: [] as number[],
                fill: true,
                backgroundColor: subColor,
                borderColor: subColor,
                lineTension: 0.4,
                yAxisID: 'y1',
            },
        ],
    };

    const options: any = {
        tooltips: {
            enabled: true,
            mode: 'label',
        },
        bezierCurve: true,
        responsive: true,
        maintainAspectRatio: false,
        plugins: {
            legend: {
                position: 'top',
                display: false,
                labels: {
                    usePointStyle: true,
                    font: {
                        size: 14,
                        family: 'lexend, sans-serif',
                    },
                },
            },
            title: {
                display: false,
            },
        },
        interaction: {
            intersect: false,
        },
        scales: {
            x: {
                title: {
                    display: true,
                    text: 'Test',
                    color: subColor,
                    font: {
                        size: 16,
                        family: 'lexend, sans-serif',
                    },
                },
                ticks: {
                    autoSkip: true,
                    maxTicksLimit: 10,
                    font: {
                        family: 'lexend, sans-serif',
                    },
                    color: subColor
                },
                grid: {
                    color: (context: any) => {
                        if (context.tick.value === data.labels[data.labels.length - 2] // here is the problem
                           || context.tick.value === 0)
                        {
                            return subColor
                        }
                        else {
                            return subColor + "15"
                        }
                    },
                },
            },
            y: {
                min: 0,
                max: Math.max(...wpmData) > 150 ? 290 : 200,
                position: 'left',
                title: {
                    display: true,
                    text: 'Words per minute',
                    color: subColor,
                    font: {
                        size: 16,
                        family: 'lexend, sans-serif',
                    },
                },
                ticks: {
                    font: {
                        family: 'lexend, sans-serif',
                    },
                    color: subColor,

                },
                grid: {
                    color: (context: any) => {
                        if (context.tick.value === 0) {
                            return subColor
                        }
                        else {
                            return subColor + "15"
                        }
                    },
                },
            },
            y1: {
                position: 'right',
                max: 120,
                min: 0,
                title: {
                    display: true,
                    text: 'Accuracy',
                    color: subColor,
                    font: {
                        size: 16,
                        family: 'lexend, sans-serif',
                    },
                },
                ticks: {
                    font: {
                        family: 'lexend, sans-serif',
                    },
                    color: subColor,
                },
                grid: {
                    color: (context: any) => {
                        if (context.tick.value === 0) {
                            return subColor
                        }
                        else {
                            return "transparent"
                        }
                    },
                },
            },
        },
        elements: {
            point: {
                radius: 2,
            },
        },

Note that I don't want to color the gridLines

Current

如何更改Chart.js中特定y轴的颜色?

Expected

如何更改Chart.js中特定y轴的颜色?

答案1

得分: 1

假设您正在使用Chart.js 4,您可以在比例配置中使用border节点。

const ctx = document.getElementById('myChart').getContext('2d');
const myChart = new Chart(ctx, {
  type: 'line',
  data: {
    labels: ['1', '2', '3', '4', '5', '6', '7'],
    datasets: [{
      label: 'Sales',
      data: [12, 19, 3, 5, 2, 3, 14],
      borderWidth: 3,
      yAxisID: 'y'
    }, {
      label: 'Purchases',
      data: [10, 40, 30, 1, 1, 13, 8],
      borderWidth: 3,
      yAxisID: 'y1'
    }],
  },
  options: {
    scales: {
      x: {
        ticks: {
          color: 'red'
        },
        grid: {
          display: false
        },
        border: {
          color: 'red',
        }
      },
      y: {
        ticks: {
          color: 'red'
        },
        grid: {
          display: false
        },
        border: {
          color: 'red',
        }
      },
      y1: {
        position: 'right',
        ticks: {
          color: 'red'
        },
        grid: {
          display: false
        },
        border: {
          color: 'red',
        }
      }
    },
  },
});

如果您希望所有图表实例都具有相同的颜色,您还可以考虑在图表默认设置中设置borderColor

Chart.defaults.borderColor = 'red';
英文:

Assuming you are using Chart.js 4, you could use the border node in scales configuration.

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

const ctx = document.getElementById(&#39;myChart&#39;).getContext(&#39;2d&#39;);
const myChart = new Chart(ctx, {
  type: &#39;line&#39;,
  data: {
    labels: [&#39;1&#39;, &#39;2&#39;, &#39;3&#39;, &#39;4&#39;, &#39;5&#39;, &#39;6&#39;, &#39;7&#39;],
    datasets: [{
      label: &#39;Sales&#39;,
      data: [12, 19, 3, 5, 2, 3, 14],
      borderWidth: 3,
      yAxisID: &#39;y&#39;
    }, {
      label: &#39;Purchases&#39;,
      data: [10, 40, 30, 1, 1, 13, 8],
      borderWidth: 3,
      yAxisID: &#39;y1&#39;
    }],
  },
  options: {
    scales: {
      x: {
        ticks: {
          color: &#39;red&#39;
        },
        grid: {
          display: false
        },
        border: {
          color: &#39;red&#39;,
        }
      },
      y: {
        ticks: {
          color: &#39;red&#39;
        },
        grid: {
          display: false
        },
        border: {
          color: &#39;red&#39;,
        }
      },
      y1: {
        position: &#39;right&#39;,
        ticks: {
          color: &#39;red&#39;
        },
        grid: {
          display: false
        },
        border: {
          color: &#39;red&#39;,
        }
      }
    },
  },
});

<!-- language: lang-css -->

.myChartDiv {
  max-width: 600px;
  max-height: 400px;
}

<!-- language: lang-html -->

&lt;script src=&quot;https://npmcdn.com/chart.js@latest/dist/chart.umd.js&quot;&gt;&lt;/script&gt;
&lt;div class=&quot;myChartDiv&quot;&gt;
  &lt;canvas id=&quot;myChart&quot; width=&quot;600&quot; height=&quot;400&quot;&gt;&lt;/canvas&gt;
&lt;/div&gt;

<!-- end snippet -->

EDIT: if you want the same color for all chart instances, you could also think to set borderColor in chart defaults:

Chart.defaults.borderColor = &#39;red&#39;;

huangapple
  • 本文由 发表于 2023年4月10日 18:24:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/75976261.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定