Returns the scatter element with the given series index and scatter index.
Javascript (Usage) | |
---|
$(function () {
var value; // Type: any
// Parameters
var seriesIndex; // Type: number
var scatterIndex; // Type: number
value = $(".selector").wijscatterchart("getScatter", seriesIndex, scatterIndex);
});
|
Javascript (Specification) | |
---|
function getScatter(
: number,
: number
) : any;
|
Parameters
- seriesIndex
- The index of the series
- scatterIndex
- The index of the scatter element
Return Value
{Raphael Element} if scatterIndex is not specified, return a list of scatters of specified seriesIndex,
else return the specified scatter element