TiPlotDataView.GridLineMajorStyle
TiPlotDataView See Also
Used to set the line style of a grid lines drawn from major ticks.
type TiPlotGridLineStyle = (ipglsSolid, ipglsDash, ipglsDot);
property GridLineMajorStyle : TiPlotGridLineStyle;
Description
Use the GridLineMajorStyle property to get or set the line style of grid lines
drawn from major ticks (major ticks from axes specified by the GridXAxisName and GridYAxisName properties)
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].GridLineMajorStyle := ipglsSolid;
C++ Builder
iComponent->DataView[0]->GridLineMajorStyle = ipglsSolid;
Contents | Index | Previous | Next