IncSymSize Property
The IncSymSize property returns or sets the marker size in page units that should be added to each class in a class plot, polar class plot, ternary class plot, or 3D XYZ class plot when the UseIncrementalSymSize is set to True. The first class size is set with StartSymSize. Returns a Double.
Syntax
object.IncSymSize
object.IncSymSize = IncSymSize
Parameter | Type | Description |
IncSymSize | Double | required, size in page units |
Example 1
This example demonstrates how to return the incremental symbol size.
Debug.Print ClassScatterPlot.IncSymSize
Example 2
This example demonstrates how to set the starting symbol size to 0.5 inches and the incremental symbol size to 0.05. The result is the second class has a symbol size of 0.55, third class has a symbol size of 0.6, etc.
ClassScatterPlot.UseIncrementalSymSize = True
ClassScatterPlot.StartSymSize= 0.5
ClassScatterPlot.IncSymSize= 0.05
Used by: AutoClassPlot object, AutoPolarClassPlot object, AutoTernaryClassPlot object, AutoXYZClassPlot object