【问题标题】:Chart.Js radar - hide label numbersChart.Js 雷达 - 隐藏标签编号
【发布时间】:2022-01-04 17:16:37
【问题描述】:

我想从库 Chart.js (v3.7) 中删除雷达上显示的数字。

我已经尝试将legend 选项设置为display:false

plugins: {
    legend: {
        display: false
    }
}

但它只隐藏数据集标签。如果有人有解决方案,我将不胜感激。

【问题讨论】:

    标签: javascript chart.js


    【解决方案1】:

    可以通过在options.scales.r.pointLabels.display 中将显示选项设置为 false 来移除外部的标签。可以通过将显示选项设置为 false 来隐藏中间的刻度线:options.scales.r.ticks.display

    const options = {
      type: 'radar',
      data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: '# of Votes',
            data: [12, 19, 3, 5, 2, 3],
            borderColor: 'orange'
          },
          {
            label: '# of Points',
            data: [7, 11, 5, 8, 3, 7],
            borderColor: 'pink'
          }
        ]
      },
      options: {
        scales: {
          r: {
            pointLabels: {
              display: false // Hides the labels around the radar chart 
            },
            ticks: {
              display: false // Hides the labels in the middel (numbers)
            }
          }
        }
      }
    }
    
    const ctx = document.getElementById('chartJSContainer').getContext('2d');
    new Chart(ctx, options);
    <body>
      <canvas id="chartJSContainer" width="600" height="400"></canvas>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.0/chart.js"></script>
    </body>

    【讨论】:

    • 完美运行,问题解决。谢谢!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-09-09
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多