scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
29 lines (28 loc) • 1.37 kB
TypeScript
import { DeletableEntity } from "../../../Core/DeletableEntity";
import { IDeletable } from "../../../Core/IDeletable";
import { NumberRange } from "../../../Core/NumberRange";
import { IntVector, SCRTDoubleVector, TSciChart } from "../../../types/TSciChart";
import { EDataSeriesType } from "../IDataSeries";
import { IPointSeries, IPointSeriesResampled } from "./IPointSeries";
import { XyPointSeriesResampled } from "./XyPointSeriesResampled";
export declare class XyNPointSeriesResampled extends DeletableEntity implements IPointSeries, IPointSeriesResampled, IDeletable {
readonly type: EDataSeriesType;
subSeries: XyPointSeriesResampled[];
protected readonly valueNames: string[];
readonly arrayCount: number;
xRange: NumberRange;
readonly resampled = true;
fifoStartIndex: number;
protected wasmContext: TSciChart;
constructor(wasmContext: TSciChart, xRange: NumberRange, arrayCount?: number, valueNames?: string[]);
get intIndexes(): IntVector;
get indexes(): SCRTDoubleVector;
get xValues(): SCRTDoubleVector;
get count(): number;
get yValues(): SCRTDoubleVector;
getYValues(i?: number): SCRTDoubleVector;
getYValuesByName(name: string): SCRTDoubleVector;
getSubSeriesByName(name: string): XyPointSeriesResampled;
delete(): void;
clearIntIndexes(): void;
}