Search code examples
javascriptjqueryhtmlchart.js

How to expand the slice of donut chart in chartjs?


Is there any way to expand the slice of donut chart onclick event or mouse hover in chartjs ?. I am using [email protected] version.enter image description here


Solution

  • 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:

    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:

    sample

    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.