Hi Kevin,
In the original sample code, the axes are configured using:
string[] labels = {"North", "North\\nEast", "East", "South\\nEast", "South", "South\\nWest",
"West", "North\\nWest"};
// Set angular axis as 0 - 360, with a spoke every 30 units
c.angularAxis().setLinearScale2(0, 360, labels);
To create the effect you need, the code can be modified to:
string[] labels = {"North\\nEast", "East", "South\\nEast", "South", "South\\nWest",
"West", "North\\nWest", "North"};
// Set angular axis as 0 - 360, with a spoke every 30 units
c.angularAxis().setLinearScale2(45, 405, labels);
c.setStartAngle(45);
Hope this can help.
Regards
Peter Kwan |