Search
CandlestickRenderer.enumVisibleCandlesticks Method
See Also
 






Enumerates the candlesticks visible in current data range.

Namespace: MindFusion.Charting
File: CandlestickRenderer.js

 Syntax

JavaScript  Copy Code

function enumVisibleCandlesticks (context, process)

 Parameters

context

A RenderContext instance.

process

A ProcessBars callback.

 Remarks

The signature of the ProcessCandlesticks delegate is as follows:'function(seriesIndex, dataIndex, points, bounds)'.param {Number} seriesIndex An integer index of series in Series list.param {Number} dataIndex An integer index of data item in specified series.param {MindFusion.Drawing.Point[]} points An array of four points containing wick ends' coordinates.param {MindFusion.Drawing.Rect} bounds A RectangleF representing the boundaries of current candlestick.The method is not expected to return a value.

 See Also