Gets or sets the size of markers of the graph.
[Visual Basic]
Public Property MarkerSize As Size
[C#]
public System.Drawing.Size MarkerSize {get; set;}
Property Value
Value that indicates the size of markers. Unit to be used is pixel.
Remarks
If the width or height was set as 0, it is not drawn.
Example
How to set the size of the markers as 3 * 3 pixels.
awGraph1.MarkerSize = New Size(3, 3)
awGraph1.MarkerSize = new Size(3, 3);
See Also
AwGraph Class | Asterworld.Graph Namespace