TiPlotDataView.GridLineYMinorStyle

TiPlotDataView

Specifies the pen style used when drawing the Y-Axis Minor Grid Lines.

type TiPlotGridLineStyle = (ipglsSolid, ipglsDash, ipglsDot);

property GridLineYMinorStyle : TiPlotGridLineStyle ;

Description

Use GridLineYMinorStyle to get or set the pen style used when drawing the Y-Axis Minor Grid Lines.

This property only has effect when the GridLineYMinorCustom 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].GridLineYMinorStyle := ipglsSolid;

C++ Builder

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

Contents | Index | Previous | Next