AutoAngleWidth Property
The AutoAngleWidth property returns or sets the polar bar chart Angle width to Auto or Custom. Returns a Boolean.
Syntax
object.AutoAngleWidth
object.AutoAngleWidth = AutoAngleWidth
Parameter | Type | Description |
AutoAngleWidth | Boolean | required, true to use an automatic angle width, false to use a custom angle width |
Remarks
If you would like to set a custom angle width, set the AutoAngleWidth property to false and then use the AngleWidth property to set the angle width.
Example 1
This example shows how to return if the angle width is automatic or custom.
Debug.Print "Angle width auto or custom = "; PolarBarChart.AutoAngleWidth
Example 2
This example shows how to set the angle width to custom.
PolarBarChart.AutoAngleWidth = False
Used by: AutoPolarBarChart object