Using grafana v8.3.4 we create panels from the new Graph panel.
The tooltip mode is set to Single
on each new panel. It used to default to All
. And I would like to make it the default again. Is there some way/hack to achieve this?
current default:
what I’d like the default to be:
I’m asking one of the frontend squads about this. This default would need to change to multi
:
{ value: SortOrder.None, label: 'None' },
{ value: SortOrder.Ascending, label: 'Ascending' },
{ value: SortOrder.Descending, label: 'Descending' },
];
builder
.addRadio({
path: 'tooltip.mode',
name: 'Tooltip mode',
category,
defaultValue: 'single',
settings: {
options: modeOptions,
},
})
.addRadio({
path: 'tooltip.sort',
name: 'Values sort order',
category,
defaultValue: SortOrder.None,
showIf: (options: T) => options.tooltip.mode === TooltipDisplayMode.Multi,
I added a comment to the discussion that you started in the repo. I think that’s a better place to continue this thread: