|
AxisThreshold
|
Specifies the minimum size (in pixels) of a sub-chart value before the axes will be displayed (assuming the axes' visible property is true). Both the Width and Height of the subchart value must exceed the AxisThreshold before the axes will be displayed. As the user zooms and unzooms, the axes' visibility will change based on this property.
If the SubChartHorizontalAxis.Visible is False and SubChartVerticalAxis.Visible is False, this value is ignored.
|
|
DefaultShape
|
Represents property DefaultShape.
|
|
LabelThreshold
|
Specifies the minimum size (in pixels) of a sub-chart value before the sub-chart's value captions will be displayed (SubChart.Options includes coLabelEachPoint). Both the Width and Height of the subchart value must exceed the LabelThreshold before the axes will be displayed. As the user zooms and unzooms, the captions' visibility will change based on this property.
If the SubChart.Options does not include coLabelEachPoint, this property is ignored.
|
|
OnCustomDrawValue
|
Represents property OnCustomDrawValue.
|
|
SubChartHorizontalAxis
|
Controls the appearance of the horizontal (X) axis for ALL sub-charts (i.e., all sub-charts for a TRSChartInChart share the same horizontal axis). Change the properties of the chart axis to change the appearance for all the sub-charts. Note that the AxisThreshold property will prevent the display of the axis for some FMX.RS.Charts.TRSChartInChartValue until the Width and Height of the value exceeds the threshold.
|
|
SubChartVerticalAxis
|
Controls the appearance of the vertical (Y) axis for ALL sub-charts (i.e., all sub-charts for a TRSChartInChart share the same vertical axis). Change the properties of the chart axis to change the appearance for all the sub-charts. Note that the AxisThreshold property will prevent the display of the axis for some FMX.RS.Charts.TRSChartInChartValue until the Width and Height of the value exceeds the threshold.
|
|
Values
|
Contains all the sub-charts in the chart-in-chart. Each sub-chart ( FMX.RS.Charts.TRSChartInChartValue ) may be its own sub-chart (SubChart), shape (Style) as well as size (Width and Height), Color, Caption, etc. When a sub-chart is added to the collection, it is initialized to the DefaultShape but with no sub-chart (unless specified). Use the Values collection to add, delete, and modify subcharts in the chart. If the SubChart has its Owner property set, the Owner controls the lifetime of the subchart. Otherwise, the Values will take care of freeing the memory for the subchart when it is deleted.
Note
|
Sub-charts are drawn from first to last through the collection, so later sub-charts are "on top" of earlier sub-charts
|
|