scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
18 lines (17 loc) • 1.01 kB
TypeScript
import { ESeriesType } from "../../../../types/SeriesType";
import { TSciChart } from "../../../../types/TSciChart";
import { IHitTestProvider } from "../HitTest/IHitTestProvider";
import { IBaseRenderableSeriesOptions } from "../IBaseRenderableSeriesOptions";
import { IFastTriangleRenderableSeriesOptions, FastTriangleRenderableSeries } from "../FastTriangleRenderableSeries";
/**
* Defines a polar triangle series in the SciChart's High Performance Real-time
* {@link https://www.scichart.com/javascript-chart-features | JavaScript Charts}.
*/
export declare class PolarTriangleRenderableSeries extends FastTriangleRenderableSeries {
readonly isPolar: boolean;
readonly type: ESeriesType;
constructor(webAssemblyContext: TSciChart, options?: IFastTriangleRenderableSeriesOptions);
/** @inheritDoc */
protected addDrawingProviders(webAssemblyContext: TSciChart, options?: IBaseRenderableSeriesOptions): void;
protected newHitTestProvider(): IHitTestProvider;
}