Show/Hide Toolbars

RiverSoftAVG Products Help

Navigation: Code Documentation > RSFMXCharts > FMX.RS.BarCharts > Classes

TRSFMXHighLowAverageChartFunction Class

Scroll Prev Top Next More

Implements a chart function class that applies a function to an input SourceChart and adds values to a FMX.RS.BarCharts.TRSHighLowAverageChart or FMX.RS.BarCharts.TRSCandleStickChart. The functions are able to modify multiple values of the Target chart at once (e.g., High, Low, and Average).

The TRSHighLowAverageChartFunction class provides specific functions applicable to high/low/average charts and candlestick charts. The function is applied over a Period of the SourceChart.
 

ChartFunctionExample

Chart Function Example showing automatic generation of hourly High/Low/Average data from a Source Line chart to a High/Low/Average Target Chart.

Namespace: FMX.RS.BarCharts

To set up a function at run-time:

Delphi

RSHighLowAverageChartFunction1 := TRSHighLowAverageChartFunction.Create(Self);
 RSHighLowAverageChartFunction1.SourceChart := RSLineChart1;
 RSHighLowAverageChartFunction1.PeriodValue := 0.25;
 RSHighLowAverageChartFunction1.Period := cfpPercentageCount;
 RSHighLowAverageChartFunction1.FunctionType := cftMaximum; 

RiverSoftAVG Products Help © 1996-2016 Thomas G. Grubb