@highcharts/dashboards
Version:
Highcharts Dashboards framework
12 lines (11 loc) • 408 B
TypeScript
import type ColorType from '../Core/Color/ColorType';
import type { DeepPartial } from '../Shared/Types';
import type Options from '../Core/Options';
declare module '../Core/Series/DataLabelOptions' {
interface DataLabelOptions {
connectorColor?: ColorType;
}
}
export type HighContrastThemeOptions = DeepPartial<Options>;
declare const theme: HighContrastThemeOptions;
export default theme;