Search
RadarRenderer.enumVisibleRanges Method
See Also
 






Enumerates each series once providing a list of all visible points at each iteration.

Namespace: MindFusion.Charting
File: RadarRenderer.js

 Syntax

JavaScript  Copy Code

function enumVisibleRanges (context, process)

 Parameters

context

A RenderContext instance.

process

A ProcessRange callback.

 Remarks

The signature of the ProcessRange delegate is as follows:'function(seriesIndex, points)'.param {Number} seriesIndexAn integer index of series in Series list.param {MindFusion.Charting.Collections.List<Point>} points A list of Point values containing the plot coordinates corresponding to data items in currently visible range.The method is not expected to return a value.

 See Also