import { RunTimeState } from './RunTimeState'; import { AdaptableBlotterObject } from '../AdaptableBlotterObject'; export interface PercentBarState extends RunTimeState { PercentBars?: PercentBar[]; } export interface PercentBar extends AdaptableBlotterObject { ColumnId: string; MinValue?: number; MaxValue?: number; PositiveColor: string; NegativeColor: string; ShowValue?: boolean; MaxValueColumnId?: string; MinValueColumnId?: string; /** * Whether to display a tooltip that will appear when you hover over the column showing the cell's numeric value. */ ShowToolTip?: boolean; }