ag-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
20 lines (19 loc) • 842 B
TypeScript
import type { AgMapLineBackgroundOptions, AgMapLineSeriesStyle } from 'ag-charts-community';
import { _ModuleSupport } from 'ag-charts-community';
import type { FeatureCollection, Geometry } from 'ag-charts-core';
declare const SeriesProperties: typeof _ModuleSupport.SeriesProperties;
export interface MapLineBackgroundNodeDatum extends _ModuleSupport.DataModelSeriesNodeDatum {
readonly index: number;
readonly projectedGeometry: Geometry;
style: AgMapLineSeriesStyle;
}
export declare class MapLineBackgroundSeriesProperties extends SeriesProperties<AgMapLineBackgroundOptions> {
topology?: FeatureCollection;
stroke: string;
strokeOpacity: number;
strokeWidth: number;
lineDash: number[];
lineDashOffset: number;
readonly tooltip: _ModuleSupport.SeriesTooltip<Omit<never, "context">>;
}
export {};