【问题标题】:How can I achieve displaying data points on chart but Dotted? Chart.js V3.7.0如何实现在图表上显示数据点但点状? Chart.js V3.7.0
【发布时间】:2022-02-15 02:45:24
【问题描述】:

我想知道是否有一个选项可以使数据点显示如下:

如果是,xAxis 的选项名称是什么?

【问题讨论】:

    标签: chart.js chart.js3


    【解决方案1】:

    您可以在所有数据集或每个数据集级别的选项根目录中将 showLine 属性设置为 false:

    const options = {
      type: 'line',
      data: {
        labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
        datasets: [{
            label: '# of Votes',
            data: [12, 19, 3, 5, 2, 3],
            backgroundColor: 'pink'
          },
          {
            label: '# of Points',
            data: [7, 11, 5, 8, 3, 7],
            backgroundColor: 'orange',
            showLine: false // Hide line for only this dataset
          }
        ]
      },
      options: {
        showLine: false // Hide the line for all datasets
      }
    }
    
    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.1/chart.js"></script>
    </body>

    【讨论】:

    • 谢谢,成功了!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-10-16
    • 1970-01-01
    • 2021-12-01
    • 1970-01-01
    • 2016-12-25
    相关资源
    最近更新 更多