ag-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
19 lines (18 loc) • 447 B
TypeScript
import { _ModuleSupport } from 'ag-charts-community';
type MarkerLike = {
enabled: boolean;
};
type RadarLike = {
properties: {
marker: MarkerLike;
selection: {
enabled: boolean;
};
styler?: Function;
};
getStyle(highlightState: undefined): {
marker: MarkerLike;
};
};
export declare function radarMarkerDrawMode(series: RadarLike): _ModuleSupport.MarkerDrawMode;
export {};