TiPlotAxis.GridLinesVisible

TiPlotAxis

Used to hide or show the grid lines that are drawn to this axis.

procedure GridLinesVisible : Boolean;

Description

Use the GridLinesVisible property hide or show the grid lines that are drawn to this axis.

Example

Delphi

iComponent.XAxis[0].GridLinesVisible := False;

iComponent.YAxis[0].GridLinesVisible := False;

C++ Builder

iComponent->XAxis[0]->GridLinesVisible = False;

iComponent->YAxis[0]->GridLinesVisible = False;

Contents | Index | Previous | Next