TiPlotAxis.ScaleType
TiPlotAxis See Also
Used to set the type of scale.
type TiPlotScaleType = (ipstLinear, ipstLog10);
property ScaleType : TiPlotScaleType
Description
Use ScaleType to get or set the type of scale. When the scale type is set to
ipstLog10, the Min and Span properties are restricted to being greater than 0.
Value
| Meaning
|
ipstLinear
| Linear
|
ipstLog10
| Logarithmic Base 10
|
Example
Delphi
iComponent.XAxis[0].ScaleType := ipstLog10;
iComponent.YAxis[0].ScaleType := ipstLog10;
C++ Builder
iComponent->XAxis[0]->ScaleType = ipstLog10;
iComponent->YAxis[0]->ScaleType = ipstLog10;
Contents | Index | Previous | Next