Sets Horizontal size of pointer in pixels.
public Int32 VertSize {get; set;}

Remarks


Default: 4

The VerticalSize property specifies the Series Pointer height in logical pixels.

Series that derive from PointSeries usually override the HorizontalSize and VerticalSize properties.

For example, Bubble series uses the Radius property to determine the correct HorizSize and VertSize, so these properties have no effect in that Series.

Example


[C#]

//This example shows  you  how to  specify the width (thickness) of a bar in a Gantt chart? 


Steema.TeeChart.Styles.Gantt gantt1 = new
Steema.TeeChart.Styles.Gantt(tChart1);
gantt1.FillSampleValues(6);
gantt1.Pointer.VertSize = 20;

See Also

SeriesPointer Class | SeriesPointer Members | Steema.TeeChart.Styles Namespace