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