rendro / easy-pie-chart

easy pie chart is a lightweight plugin to draw simple, animated pie charts for single values
http://rendro.github.io/easy-pie-chart
MIT License
2.07k stars 501 forks source link

Start at another position #165

Closed bart closed 8 years ago

bart commented 8 years ago

Hey everybody,

is it possible to start the graph at the 6 o'clock position instead?

Thanks!

bart commented 8 years ago
.chart canvas {
    transform: rotate(-180deg);
}

Did the trick

rendro commented 8 years ago

Or you use the rotate option. Then the whole canvas will be rotated. This also works in browsers that do not support css transforms.

bart commented 8 years ago

:+1: Thanks @rendro