-
public class CandlestickRenderer<FormatterType extends CandlestickFormatter> extends GroupRenderer<FormatterType>
Renders a group of com.androidplot.xy.XYSeries as a candlestick chart into an com.androidplot.xy.XYPlot. Constraints: - Exactly four series must be added using the same CandlestickFormatter. - Each of the four series has the same x(i) value. - Expects that series are added in the order of: high, low, open, close CandlestickSeries and CandlestickMaker provide simplified classes and methods for setting up a candlestick chart.
-
-
Constructor Summary
Constructors Constructor Description CandlestickRenderer(XYPlot plot)
-
Method Summary
Modifier and Type Method Description void
onRender(Canvas canvas, RectF plotArea, List<SeriesBundle<XYSeries, out FormatterType>> sfList, int seriesSize, RenderStack stack)
-
Methods inherited from class com.androidplot.xy.GroupRenderer
onRender
-
Methods inherited from class com.androidplot.xy.XYSeriesRenderer
getUniqueRegionFormatters
-
Methods inherited from class com.androidplot.ui.SeriesRenderer
drawSeriesLegendIcon, getFormatter, getPlot, getSeriesAndFormatterList, getSeriesList, render, setPlot
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
CandlestickRenderer
CandlestickRenderer(XYPlot plot)
-
-
Method Detail
-
onRender
void onRender(Canvas canvas, RectF plotArea, List<SeriesBundle<XYSeries, out FormatterType>> sfList, int seriesSize, RenderStack stack)
-
-
-
-