TiPlotDataView.GridYAxisName

TiPlotDataView See Also

Specifies the name of the Y-Axis used for displaying Y-Axis major and minor lines in the grid.

property GridYAxisName : String;

Description

Use GridXAxisName to get or the name of the Y-Axis used for displaying Y-Axis major and minor lines in the grid. Use GridLineShowYMajors and GridLineShowYMinors to specify which ticks are used to draw grid lines.

Stacked Axes Note: If you are using stacked axes, you will probably want to set this property to "<All>". This string value will instruct the grid to draw to the major tick lines for each individual X-Axis.

Example

Delphi

iComponent.DataView[0].GridYAxisName := 'Y-Axis 1';

iComponent.DataView[0].GridYAxisName := iComponent.YAxis[0].Name;

iComponent.DataView[0].GridYAxisName := '<All>';

C++ Builder

iComponent->DataView[0]->GridYAxisName = "Y-Axis 1";

iComponent->DataView[0]->GridYAxisName = iComponent.YAxis[0].Name;

iComponent->DataView[0]->GridYAxisName = "<All>";

Contents | Index | Previous | Next