TiPlotDataView.GridLineXMinorStyle
TiPlotDataView
Specifies the pen style used when drawing the X-Axis Minor Grid Lines.
type TiPlotGridLineStyle = (ipglsSolid, ipglsDash, ipglsDot);
property GridLineXMinorStyle : TiPlotGridLineStyle ;
Description
Use GridLineXMinorStyle to get or set the pen style used when drawing the
X-Axis Minor Grid LInes.
This property only has effect when the GridLineXMinorCustom property is set to TRUE. Otherwise, the pen style used is specified by the
overall GridLineMinorStyle property
These are the possible values:
Value
Meaning
ipglsSolid
A solid line.
ipglsDash
A line made up of a series of dashes.
ipglsDot
A line made up of a series of dots.
Example
Delphi
iComponent.DataView[0].GridLineXMinorStyle := ipglsSolid;
C++ Builder
iComponent->DataView[0]->GridLineXMinorStyle = ipglsSolid;
Contents | Index | Previous | Next