<tfoot id='MhPHY'></tfoot>

  1. <legend id='MhPHY'><style id='MhPHY'><dir id='MhPHY'><q id='MhPHY'></q></dir></style></legend>
    • <bdo id='MhPHY'></bdo><ul id='MhPHY'></ul>
  2. <i id='MhPHY'><tr id='MhPHY'><dt id='MhPHY'><q id='MhPHY'><span id='MhPHY'><b id='MhPHY'><form id='MhPHY'><ins id='MhPHY'></ins><ul id='MhPHY'></ul><sub id='MhPHY'></sub></form><legend id='MhPHY'></legend><bdo id='MhPHY'><pre id='MhPHY'><center id='MhPHY'></center></pre></bdo></b><th id='MhPHY'></th></span></q></dt></tr></i><div id='MhPHY'><tfoot id='MhPHY'></tfoot><dl id='MhPHY'><fieldset id='MhPHY'></fieldset></dl></div>

    <small id='MhPHY'></small><noframes id='MhPHY'>

      在 Chart.js 条形图中显示数据值(版本 3)

      Show data values in Chart.js bars (version 3)(在 Chart.js 条形图中显示数据值(版本 3))

      1. <legend id='2l8hI'><style id='2l8hI'><dir id='2l8hI'><q id='2l8hI'></q></dir></style></legend>
        • <tfoot id='2l8hI'></tfoot>
          <i id='2l8hI'><tr id='2l8hI'><dt id='2l8hI'><q id='2l8hI'><span id='2l8hI'><b id='2l8hI'><form id='2l8hI'><ins id='2l8hI'></ins><ul id='2l8hI'></ul><sub id='2l8hI'></sub></form><legend id='2l8hI'></legend><bdo id='2l8hI'><pre id='2l8hI'><center id='2l8hI'></center></pre></bdo></b><th id='2l8hI'></th></span></q></dt></tr></i><div id='2l8hI'><tfoot id='2l8hI'></tfoot><dl id='2l8hI'><fieldset id='2l8hI'></fieldset></dl></div>

          <small id='2l8hI'></small><noframes id='2l8hI'>

                <bdo id='2l8hI'></bdo><ul id='2l8hI'></ul>

                  <tbody id='2l8hI'></tbody>
                本文介绍了在 Chart.js 条形图中显示数据值(版本 3)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                关于这个主题有很多答案(在 chart.js 中的条形顶部显示值),但这都是关于版本 2.x

                There is a thread with many answers on this topic (Show values on top of bars in chart.js), but it's all about version 2.x

                • getDatasetMeta() 已被弃用:https://www.chartjs.org/docs/3.0.2/getting-started/v3-migration.html

                数据标签"插件尚未移植到 3.x:https://github.com/chartjs/chartjs-plugin-datalabels

                The "datalabels" plugin has not been ported to 3.x: https://github.com/chartjs/chartjs-plugin-datalabels

                您找到任何可行的解决方案了吗?数据值如何显示在垂直条形图顶部(或水平条形图旁边)?

                Have you found any working solutions? How can data values be displayed on top of vertical barcharts (or next to horizontal barcharts)?

                推荐答案

                您可以使用数据标签插件的测试版.

                You can use the beta of the datalabels plugin.

                文档:https://v2_0_0-rc_1--chartjs-plugin-datalabels.netlify.app/

                脚本标签:<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0-rc/dist/chartjs-plugin-datalabels.min.js"></script>

                安装命令:npm i chartjs-plugin-datalabels@next

                活生生的例子:

                <script src="https://cdn.jsdelivr.net/npm/chart.js@3.3.0/dist/chart.min.js"></script>
                <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0-rc"></script>
                <canvas id="myChart" width="850" height="520"></canvas>
                <script>
                  var ctx = document.getElementById('myChart');
                  
                  Chart.register(ChartDataLabels); // first way of registering the plugin, registers them for all your charts
                  
                  var myChart = new Chart(ctx, {
                    type: 'bar',
                    plugins: [ChartDataLabels], // second way of registering plugin, register plugin for only this chart
                    data: {
                      labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
                      datasets: [{
                        data: [12, 19, 3, 5, 2, 3],
                        label: 'Advisor Closed MTD',
                        backgroundColor: 'rgb(192,111,94)',
                        barThickness: 25,
                        datalabels: {
                          color: '#FFCE56'
                        }
                
                      }],
                    },
                    options: {
                      responsive: false,
                      plugins: {
                        datalabels: {
                          anchor: 'end', // remove this line to get label in middle of the bar
                          align: 'end',
                          formatter: (val) => (`${val}%`),
                          labels: {
                            value: {
                              color: 'blue'
                            }
                          }
                
                        }
                      }
                    }
                  });
                </script>

                这篇关于在 Chart.js 条形图中显示数据值(版本 3)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                ChartJS Version 3 - common legend for multiple line charts(ChartJS 版本 3 - 多个折线图的常用图例)
                Charts.js scales yaxes ticks min max doesnt work(Charts.js 缩放 yaxes 刻度 min max 不起作用)
                How to expand the slice of donut chart in chartjs?(如何在chartjs中扩展圆环图的切片?)
                Chart.js yAxes Ticks stepSize not working (fiddle)(Chart.js yAxes Ticks stepSize 不起作用(小提琴))
                Rounded corners on chartJS v.2 - bar charts (with negative values)(chartJS v.2 上的圆角 - 条形图(带负值))
                How to hide value in Chart JS bar(如何在 Chart JS 栏中隐藏值)
              • <tfoot id='X5VDd'></tfoot>

                      <tbody id='X5VDd'></tbody>

                    <small id='X5VDd'></small><noframes id='X5VDd'>

                        <bdo id='X5VDd'></bdo><ul id='X5VDd'></ul>
                          <legend id='X5VDd'><style id='X5VDd'><dir id='X5VDd'><q id='X5VDd'></q></dir></style></legend>
                        1. <i id='X5VDd'><tr id='X5VDd'><dt id='X5VDd'><q id='X5VDd'><span id='X5VDd'><b id='X5VDd'><form id='X5VDd'><ins id='X5VDd'></ins><ul id='X5VDd'></ul><sub id='X5VDd'></sub></form><legend id='X5VDd'></legend><bdo id='X5VDd'><pre id='X5VDd'><center id='X5VDd'></center></pre></bdo></b><th id='X5VDd'></th></span></q></dt></tr></i><div id='X5VDd'><tfoot id='X5VDd'></tfoot><dl id='X5VDd'><fieldset id='X5VDd'></fieldset></dl></div>