|
Polar Chart Syntax for Setting Width of All "Spoke" Angular Axis Widths |
Posted by jhcoxx on Jun-27-2014 23:15 |
|
Can't puzzle out the syntax for setting the width of the 'spoke' axes of a polar chart. Using
Call c.RadialAxis().setWidth(3)
will set the width of the spoke where the radial axis is, but I've not found a way to set the width of the other angular axes. Also, I see no way to change the color of the angular axes.
What am I missing? |
Re: Polar Chart Syntax for Setting Width of All "Spoke" Angular Axis Widths |
Posted by jhcoxx on Jun-28-2014 00:31 |
|
Found it in one of the polar chart examples!
' Use 1 pixel width semi-transparent black (c0000000) lines as grid lines
Call c.setGridColor(&HC0000000, 1, &HC0000000, 1) |
|