StatusHistory/StateTimeline: Re-config plot for tooltip mode in panel edit (#77954)

This commit is contained in:
Leon Sorokin 2023-11-09 11:48:39 -06:00 committed by GitHub
parent 40fd80c46f
commit ced9fcb94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ export interface TimelineProps extends Omit<GraphNGProps, 'prepConfig' | 'propsT
legendItems?: VizLegendItem[];
}
const propsToDiff = ['rowHeight', 'colWidth', 'showValue', 'mergeValues', 'alignValue'];
const propsToDiff = ['rowHeight', 'colWidth', 'showValue', 'mergeValues', 'alignValue', 'tooltip'];
export class TimelineChart extends React.Component<TimelineProps> {
declare context: React.ContextType<typeof PanelContextRoot>;