TiPlotDataView.GridLineMinorStyle

TiPlotDataView See Also

Used to set the line style of a grid lines drawn from minor ticks.

type TiPlotGridLineStyle = (ipglsSolid, ipglsDash, ipglsDot);

property GridLineMinorStyle : TiPlotGridLineStyle;

Description

Use the GridLineMinorStyle property to get or set the line style of grid lines drawn from minor ticks (minor 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].GridLineMinorStyle := ipglsSolid;

C++ Builder

iComponent->DataView[0]->GridLineMinorStyle = ipglsSolid;

Contents | Index | Previous | Next