Search
BarOverlayRenderer.enumVisibleOverlays Method
See Also
 






Enumerates the bars visible in current data range.

Namespace: MindFusion.Charting
File: BarOverlayRenderer.js

 Syntax

JavaScript  Copy Code

function enumVisibleOverlays (context, frontToBack, process)

 Parameters

context

A RenderContext instance.

frontToBack

true to enumerate from front bar to back bar, or false otherwise.

process

A ProcessBars callback.

 Remarks

The signature of the ProcessBars delegate is as follows:'function(seriesIndex, dataIndex, 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.Rect} bounds A RectangleF representing the boundaries of current bar.The method is not expected to return a value.

 See Also