Add series point to the series list.
Syntax
$(function () {
var returnsValue; // Type: any
// Parameters
var seriesIndex; // Type: number
var point; // Type: object
var shift; // Type: bool
returnsValue = $(".selector").wijlinechart("addSeriesPoint", seriesIndex, point, shift);
});
function addSeriesPoint(
: number,
: object,
: bool
) : any;
Parameters
- seriesIndex
- The index of the series that the point will be inserted to.
- point
- The point that will be inserted to.
- shift
- A value that indicates whether to shift the first point.
See Also