Med
Med

Reputation: 221

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.

Upvotes: 1

Views: 93

Answers (1)

Mark
Mark

Reputation: 108567

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) }

Upvotes: 1

Related Questions