TiPlotAxis.GetLabelText
TiPlotAxis See Also
Used to get the formatted label text for a specific value.
function GetLabelText(Value : Double) : String;
Description
Call the GetLabelText method to get the formatted label text for a specific
value.
Example
Delphi
Value := iComponent.XAxis[0].GetLabelText(30.65);
Value := iComponent.YAxis[0].GetLabelText(30.65);
C++ Builder
Value = iComponent->XAxis[0]->GetLabelText(30.65);
Value = iComponent->YAxis[0]->GetLabelText(30.65);
Contents | Index | Previous | Next