How to change the direction of c# polar chart clockwise to counterclockwise?
I've been trying to change the direction of the polar chart component Visual Studio 2010 (C#). By default the chart is displayed in clockwise开发者_如何学Python orientation. I need to change this to counterclockwise orientation. What property do I use in the chart to do this.
Apparently there´s no such feature in polar mscharts.I only found a workaround for this question. The way to do counterclockwise plotting is by reversing yourself all the labels(ex. 30 -> 330; 60->300; 90->270..etc)and your data also.
精彩评论