Search code examples
angularjsd3.jsnvd3.jsangular-nvd3

in angular-nvd3 how to Invert donut Chart


is there a way to invert angular nvd3 donut chart (pieChart with donut: true,)? that will draw the chart in the inverted sense which is the second part of the donut.


Solution

  • Under pie options change the startAngle to:

    function (d) { return d.startAngle/2 - (3 * Math.PI / 2) }
    

    And endAngle to:

    function (d) { return d.endAngle/2 - (3 * Math.PI / 2) }