ag-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
17 lines (16 loc) • 1.26 kB
TypeScript
import { type AgBaseRadarSeriesOptions, type AgRadarLineSeriesStyle, type AgRadarLineSeriesStylerParams, type AgRadarSeriesStyle, _ModuleSupport } from 'ag-charts-community';
import { RadarSeries, type ResolvedRadarStyle } from '../radar/radarSeries';
import { RadarSeriesProperties } from '../radar/radarSeriesProperties';
type S = AgRadarSeriesStyle;
type O = AgBaseRadarSeriesOptions;
type P = RadarSeriesProperties<S, O>;
export declare class RadarLineSeries extends RadarSeries<S, O, P> {
static readonly className = "RadarLineSeries";
static readonly type: "radar-line";
properties: RadarSeriesProperties<AgRadarSeriesStyle, AgBaseRadarSeriesOptions<any, unknown, AgRadarSeriesStyle, import("ag-charts-community").AgRadarSeriesStylerParams<any, unknown, AgRadarSeriesStyle>>>;
protected updatePathSelections(): void;
protected updatePathNodes(): void;
protected makeStylerParams(highlightStateEnum: _ModuleSupport.HighlightState | undefined, selectionStateEnum: _ModuleSupport.SelectionState | undefined, candidateStateEnum: _ModuleSupport.SelectionState | undefined): AgRadarLineSeriesStylerParams;
getStyle(highlightState: _ModuleSupport.HighlightState | undefined): ResolvedRadarStyle<AgRadarLineSeriesStyle>;
}
export {};