TiPlotAxis.ScaleLinesShow

TiPlotAxis

Specifies whether the DataView grid lines are drawn to this axis.

property ScaleLinesShow : Boolean;

Description

Use ScaleLinesShow to specify whether DataView grid lines are drawn to this particular axis. This is useful where you may have the DataView configured to draw grid lines to all axes, but you want to exclude a particular axis. Simply set ScaleLinesShow to False to exclude this axis.

Example

Delphi

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

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

C++ Builder

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

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

Contents | Index | Previous | Next