TiPlotAxis.ValueOnScale

TiPlotAxis See Also

Indicates if a value is on the display portion of the scale.

function ValueOnScale(Value : Double) : Boolean;

Description

Call the ValueOnScale to see if a value is on the display portion of the scale.

Example

Delphi

Value := iComponent.XAxis[0].ValueOnScale(158);

Value := iComponent.YAxis[0].ValueOnScale(158);

C++ Builder

Value = iComponent->XAxis[0]->ValueOnScale(158);

Value = iComponent->YAxis[0]->ValueOnScale(158);

Contents | Index | Previous | Next