|
CreatePreviewValues
|
Creates sample values for illustrating how the chart will look. This function is automatically called at design-time to fill the chart with sample values. It can also be called at run-time to add more values to the chart (i.e., the chart is not cleared first)
Note
|
Set the Preview property to false to have the design-time sample values show up at run-time
|
|
|
DrawArea(TCanvas,TCanvasRect,Boolean)
|
Overloaded. Represents method DrawArea(TCanvas,TCanvasRect,Boolean).
|
|
DrawLine(TCanvas,TCanvasRect,Boolean)
|
Draws the entire line for the chart. The method calls other methods depending on the LineStyle. (Overrides FMX.RS.Charts.TRSCustomLineChart.DrawLine(TCanvas,TCanvasRect,Boolean).)
|
|
GetChartType
|
Returns the chart type enumerated value for this class. Each chart class overrides this class function to return the RSChartConsts|TRSChartType enumerated value (Overrides FMX.RS.Charts.TRSCustomPointChart.GetChartType.)
|
|
InitializeChart
|
Creates and initialize structures and values of chart. This method is the safe place to initialize chart values without change events occurring.
Notes to Inheritors
|
The constructor calls this method. Use this method to actually create and initialize properties. Do not assign event properties in this method (use the InitializeChangeEvents method instead)
|
|