Specifies the minimum value for the range of the axis. The Minimum and Maximum properties specify the full range of the axis, regardless of whether the axis is zoomed or not. The ZoomMinimum and ZoomMaximum properties return the zoomed range of the axis - when the axis is not zoomed, these properties equal the minimum and maximum properties.
Use the Minimum property to set the full mnimum range of the axis. Alternatively, you can include axAutomaticMinimum in the
Options property and the axis will automatically calculate the minimum value based on the chart values ( FMX.RS.ChartPanel.TRSChartValues class). Setting the Minimum property manually causes the axis to remove the axAutomaticMinimum member from the Options set.
Namespace: FMX.RS.ChartPanel
Delphi |
published |
Property Value
Type: TRSChartValueType
The following code sets the Minimum and Maximum range before addings some points to a chart:
|