Search
RadarScatterRenderer.enumPoints Method
See Also
 






ScatterRenderer.EnumPoints override. Enumerates the data values of rendered series mapped to plot's 2D coordinates.

Namespace: MindFusion.Charting
File: RadarScatterRenderer.js

 Syntax

JavaScript  Copy Code

function enumPoints (context, process)

 Parameters

context

A RenderContext instance.

process

A ProcessPoint callback.

 Remarks

The signature of the ProcessPoint delegate is as follows:'function(seriesIndex, dataIndex, point)'.param {Number} seriesIndex An integer index of series in Series list.param {Number} dataIndex An integer index of data item in specified series.param {Point} point A Point instance containing the Plot2D coordinates corresponding to current data item.The method is not expected to return a value.

 See Also