Hi,
When I move cursor over the plot (compare mode) I have all traces hover infos, but no black box on the x axis showing the x value.
All my traces have same x values, being an array with strings representing hours like [‘00:00’, ‘00:05’, etc]
Here is my layout:
layout = {
title: title,
xaxis: {
zeroline: true,
showgrid: false,
ticklen: 9,
tickmode: ‘linear’,
tick0: 0,
dtick: 12
},
yaxis: {
ticklen: 7,
ticksuffix: ‘°c’,
range: [rangeMin, rangeMax+4],
showline: true
}
};
How can I force the axis value on hover ?
Thanks