ag-charts-types
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
11 lines (10 loc) • 487 B
TypeScript
import type { GeoJSON } from '../../chart/types';
import type { FillOptions, LineDashOptions, StrokeOptions } from '../cartesian/commonOptions';
export interface AgMapShapeBackgroundThemeableOptions extends FillOptions, StrokeOptions, LineDashOptions {
}
export interface AgMapShapeBackgroundOptions extends AgMapShapeBackgroundThemeableOptions {
/** Configuration for the Map Shape Background. */
type: 'map-shape-background';
/** GeoJSON data. */
topology?: GeoJSON;
}