interface ExprSeries {
    expr: ExprString;
    nrPoints: uint;
    startValue?: number;
    step?: number;
}

Properties

expr: ExprString

Expression that defines the series. v is the variable that starts in startValue, increments step. n is the number of points.

nrPoints: uint

Number of points generated by the expr. If it's undefined, but there is already a previous series it will use the previous series nrPoints.

ChartDefaults.nrPoints
startValue?: number
step?: number