TiPlotDataView.GridLineXMajorStyle

TiPlotDataView

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

type TiPlotGridLineStyle = (ipglsSolid, ipglsDash, ipglsDot);

property GridLineXMajorStyle : TiPlotGridLineStyle ;

Description

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

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

C++ Builder

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

Contents | Index | Previous | Next