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 * * --- * 📚 Docs: {@link https://www.scichart.com/documentation/js/v4/2d-charts/chart-types/polar-text-renderable-series/}. */ 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; }