I have a requirement for a chart that looks as such:

I found Chart JS' Polar Area Chart, but it's not rotated as I needed.

And since Chart JS doesn't seem to have a rotate property, I tried just rotating the canvas with CSS
#myChart {
-webkit-transform: rotate(-25.2deg);
transform: rotate(-25.2deg);
}
This gets the desired rotation, but as you can see, the tooltips are also shifted, and any nearby divs could be obscured by the rotated canvas:

Is there some feature/method I'm overlooking to rotate a polar chart without manipulating the canvas?