1. <tfoot id='eOkPi'></tfoot>
      • <bdo id='eOkPi'></bdo><ul id='eOkPi'></ul>

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

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

    3. 如何在chartjs中扩展圆环图的切片?

      How to expand the slice of donut chart in chartjs?(如何在chartjs中扩展圆环图的切片?)

      <tfoot id='jxSe5'></tfoot>
        <tbody id='jxSe5'></tbody>
          <bdo id='jxSe5'></bdo><ul id='jxSe5'></ul>

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

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

              • 本文介绍了如何在chartjs中扩展圆环图的切片?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                有没有办法在chartjs中扩展圆环图onclick事件或鼠标悬停的切片?我正在使用 chart.js@2.8.0 版本.

                解决方案

                Shift-zooming 当前选择的切片不是一个功能,但在各个论坛和项目的 GitHub 社区上已经讨论过多次:

                • 中所示的图例来解决这个问题,这是这个问题.
                • 所选切片将与其余切片保持联系.如果希望它有间隙,则需要根据 .startAngle 翻译活动切片的 xy.endAngle活动切片的属性.

                Is there any way to expand the slice of donut chart onclick event or mouse hover in chartjs ?. I am using chart.js@2.8.0 version.

                解决方案

                Shift-zooming the currently selected slice is not a feature but it has been discussed several times on various forums and the project's GitHub community:

                • https://forum.mendixcloud.com/link/questions/85582
                • https://github.com/chartjs/Chart.js/issues/1451

                The Github discussion contains a fiddle someone wrote for a Pie chart with Chart.js 1.0. Here is an updated version for the current Chart.js version that supports Donut charts.

                Code:

                This part only shows the part that zooms the active element, it is just to give you the idea of how to use the active elements .innerRadius and .outerRadius properties to shift the element. The fiddle contains the complete code that also handles shrinking the previously selected element.

                <div style="width:400px;">
                  <canvas id="myChart" width="200" height="200"></canvas>
                </div>
                

                var ctx = document.getElementById('myChart');
                var myChart = new Chart(ctx, {
                  type: 'doughnut',
                  options: {
                    layout: {
                      padding: 30
                    }
                  },
                  data: {
                    labels: ['Red', 'Blue', 'Yellow'],
                    datasets: [
                      {
                        label: '# of Votes',
                        data: [4, 5, 3],
                        backgroundColor: [
                          'rgba(255, 0, 0, 1)',
                          'rgba(54, 162, 235, 1)',
                          'rgba(255, 206, 86, 1)'
                        ],
                        borderWidth: 3
                      }]
                  }
                });
                
                var addRadiusMargin = 10;
                
                $('#myChart').on('click', function(event) {
                  var activePoints = myChart.getElementsAtEvent(event);
                
                  if (activePoints.length > 0) {
                    // update the newly selected piece
                    activePoints[0]['_model'].innerRadius = activePoints[0]['_model'].innerRadius +
                        addRadiusMargin;
                    activePoints[0]['_model'].outerRadius = activePoints[0]['_model'].outerRadius +
                        addRadiusMargin;
                  }
                
                  myChart.render(300, false);
                }
                

                Sample image:

                Here is a sample of the highlighted slice:

                Limitations:

                There are two limitations of the sample that I haven't included:

                • Chart.js does not allow to define a margin between legend and chart content so when you are "zooming"/"moving", the zoomed slice might overlap parts of the legend. You may solve this by extending the legend as shown in Jordan Willis' Codepen which was the result of this SO question.
                • The selected slice will stay in contact with the remaining slices. If you want it to have a gap, you need to translate x and y of the active slice based on the .startAngle and .endAngleproperties of the active slice.

                这篇关于如何在chartjs中扩展圆环图的切片?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                相关文档推荐

                在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
                append() 方法在被选元素的结尾(仍然在内部)插入指定内容。 语法: $(selector).append( content ) var creatPrintList = function(data){ var innerHtml = ""; for(var i =0;i data.length;i++){ innerHtml +="li class='contentLi'"; innerHtml +="a href
                问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
                Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                quot;Each child in an array should have a unique key propquot; only on first time render of page(“数组中的每个孩子都应该有一个唯一的 key prop仅在第一次呈现页面时)
                CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  <tbody id='FgZMf'></tbody>
              • <tfoot id='FgZMf'></tfoot>

                          <bdo id='FgZMf'></bdo><ul id='FgZMf'></ul>
                          <legend id='FgZMf'><style id='FgZMf'><dir id='FgZMf'><q id='FgZMf'></q></dir></style></legend>
                        • <small id='FgZMf'></small><noframes id='FgZMf'>

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