/* * * * (c) 2010-2026 Highsoft AS * Author: Torstein Hønsi * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * * */ /* * * * Imports * * */ import type ColorType from '../../Core/Color/ColorType'; import type ColumnPointOptions from '../Column/ColumnPointOptions'; /* * * * Declarations * * */ export type FlagsShapeValue = ('circlepin'|'flag'|'nopin'|'squarepin'); export interface FlagsPointOptions extends ColumnPointOptions { /** * The fill color of an individual flag. By default it inherits from * the series color. * * @product highstock * * @apioption series.flags.data.fillColor */ fillColor?: ColorType; labelrank?: number; selected?: boolean; shape?: FlagsShapeValue; /** * The longer text to be shown in the flag's tooltip. * * @product highstock */ text?: string; /** * The short text to be shown on the flag. * * @product highstock */ title?: string; x?: number; } /* * * * Default Export * * */ export default FlagsPointOptions;