Defines display and computation options for a TRSChartAxis.
Namespace: RSChartConsts
Delphi
|
type
TAxisOption = (
axAutomaticMinimum,
axAutomaticMaximum,
axShowLabels,
axShowGrid,
axShowTitle,
axInverted,
axLogarithmic );
|
|
Name
|
Description
|
|
axAutomaticMaximum
|
Directs the chart axis to calculate the axis maximum automatically based on the maximum values of the charts associated with the axis.
|
|
axAutomaticMinimum
|
Directs the chart axis to calculate the axis minimum automatically based on the minimum values of the charts associated with the axis.
|
|
axInverted
|
Directs the chart axis to invert or switch its values. If the chart axis would normally display from 0 to 100, this option would cause the chart axis to display from 100 to 0.
|
|
axLogarithmic
|
Directs the chart axis to divide the axis logarithmically instead of linearly
|
|
axShowGrid
|
Directs the chart axis to display the axis grid
|
|
axShowLabels
|
Directs the chart axis to display labels on the axis
|
|
axShowTitle
|
Directs the chart axis to display the Title
|
Top
|