scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
20 lines (19 loc) • 1.04 kB
TypeScript
import { ESeriesType } from "../../../../types/SeriesType";
import { TSciChart } from "../../../../types/TSciChart";
import { ResamplingParams } from "../../../Numerics/Resamplers/ResamplingParams";
import { FastTextRenderableSeries, ITextRenderableSeriesOptions } from "../FastTextRenderableSeries";
import { IHitTestProvider } from "../HitTest/IHitTestProvider";
/**
* Defines a polar text series in the SciChart's High Performance Real-time
* {@link https://www.scichart.com/javascript-chart-features | JavaScript Charts}.
*/
export declare class PolarTextRenderableSeries extends FastTextRenderableSeries {
readonly isPolar: boolean;
type: ESeriesType;
constructor(webAssemblyContext: TSciChart, options?: ITextRenderableSeriesOptions);
/** @inheritDoc */
protected addDrawingProviders(webAssemblyContext: TSciChart, options?: ITextRenderableSeriesOptions): void;
/** @inheritDoc */
needsResampling(rp: ResamplingParams): boolean;
protected newHitTestProvider(): IHitTestProvider;
}