<i id='vSIH7'><tr id='vSIH7'><dt id='vSIH7'><q id='vSIH7'><span id='vSIH7'><b id='vSIH7'><form id='vSIH7'><ins id='vSIH7'></ins><ul id='vSIH7'></ul><sub id='vSIH7'></sub></form><legend id='vSIH7'></legend><bdo id='vSIH7'><pre id='vSIH7'><center id='vSIH7'></center></pre></bdo></b><th id='vSIH7'></th></span></q></dt></tr></i><div id='vSIH7'><tfoot id='vSIH7'></tfoot><dl id='vSIH7'><fieldset id='vSIH7'></fieldset></dl></div>
    • <bdo id='vSIH7'></bdo><ul id='vSIH7'></ul>

      1. <small id='vSIH7'></small><noframes id='vSIH7'>

      2. <legend id='vSIH7'><style id='vSIH7'><dir id='vSIH7'><q id='vSIH7'></q></dir></style></legend>

      3. <tfoot id='vSIH7'></tfoot>

        Chart.js 雷达标签坐标

        时间:2023-11-01
        <legend id='obooN'><style id='obooN'><dir id='obooN'><q id='obooN'></q></dir></style></legend>
        1. <small id='obooN'></small><noframes id='obooN'>

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

                <bdo id='obooN'></bdo><ul id='obooN'></ul>
                <tfoot id='obooN'></tfoot>

                  <tbody id='obooN'></tbody>

                  本文介绍了Chart.js 雷达标签坐标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  有什么方法可以获取雷达图中标签的坐标吗?我正在尝试在标签区域中放置图像而不是文本.

                  is there any way to get the coordinates for the labels in the radar chart? I'm trying to put images instead of text in the labels area.

                  推荐答案

                  您可以使用 scale 属性计算它.这是动画完成后在这些点上绘制一个蓝色圆圈的东西.

                  You can calculate it using the scale property. Here is something that draws a blue circle at those points after the animation completes.

                  onAnimationComplete: function () {
                      for (var i = 0; i < this.scale.valuesCount; i++) {
                          // get the poitn position
                          var pointLabelPosition = this.scale.getPointPosition(i, this.scale.calculateCenterOffset(this.scale.max) + 5);
                  
                          // draw a circle at that point
                          this.chart.ctx.beginPath();
                          this.chart.ctx.arc(pointLabelPosition.x, pointLabelPosition.y, 5, 0, 2 * Math.PI, false);
                          this.chart.ctx.fillStyle = '#77e';
                          this.chart.ctx.fill();
                          this.chart.ctx.stroke();
                      }
                  }
                  

                  <小时>

                  小提琴 - http://jsfiddle.net/1jgmbyb7/

                  这篇关于Chart.js 雷达标签坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Chart.JS - 极地区域 - 图例悬停样式和边距 下一篇:使用不同大小的数据集更新 chart.js 图表

                  相关文章

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

                    • <bdo id='kwFLB'></bdo><ul id='kwFLB'></ul>

                  1. <legend id='kwFLB'><style id='kwFLB'><dir id='kwFLB'><q id='kwFLB'></q></dir></style></legend>

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

                      <tfoot id='kwFLB'></tfoot>