雷达图,Chart.js v3.2 标签定制

Radar Chart, Chart.js v3.2 labels customization

如何自定义雷达图中的标签?

我指的不是图例标签,而是雷达图顶点的声音

特别是字体和颜色

我搜索了很多,但我找到了旧版本的解决方案,而且只有颜色 属性

我刚刚尝试使用 pointLabels 属性 但没有用。 有人可以帮助我吗?

IMAGE

这可以通过以下方式实现 options:

scales: {
  r: {
    pointLabels: {
      color: 'green',
      font: {
        size: 20,
        style: 'italic'
      }
    }
  }
}

I must admit that I didn't find the solution in the Chart.js documentation either. Therefore, I logged the entire chart to the console (console.log(chart)) and searched for "scales" to finally find the pointLabels default values.

请查看下面的可运行示例,看看它是如何工作的:

new Chart('radar-chart', {
  type: 'radar',
  data: {
    labels: ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'],
    datasets: [{
      label: 'My First Dataset',
      data: [65, 59, 90, 81, 56, 55, 40],
      fill: true,
      backgroundColor: 'rgba(255, 99, 132, 0.2)',
      borderColor: 'rgb(255, 99, 132)',
      pointBackgroundColor: 'rgb(255, 99, 132)',
      pointBorderColor: '#fff',
      pointHoverBackgroundColor: '#fff',
      pointHoverBorderColor: 'rgb(255, 99, 132)'
    }],
  },
  options: {
    plugins: {
      legend: {
        display: false
      }
    },
    scales: {
      r: {
        pointLabels: {
          color: 'green',
          font: {
            size: 20,
            style: 'italic'
          }
        }
      }
    }
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.2.0/chart.min.js"></script>
<canvas id="radar-chart"></canvas>