TiPlotDataView.GridLineYMajorStyle

TiPlotDataView

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

type TiPlotGridLineStyle = (ipglsSolid, ipglsDash, ipglsDot);

property GridLineYMajorStyle : TiPlotGridLineStyle ;

Description

Use GridLineYMajorStyle to get or set the pen style used when drawing the Y-Axis Major Grid LInes.

This property only has effect when the GridLineYMajorCustom property is set to TRUE. Otherwise, the pen style used is specified by the overall GridLineMajorStyle 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].GridLineYMajorStyle := ipglsSolid;

C++ Builder

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

Contents | Index | Previous | Next