Hi guys,
I’m building a chart with two traces, the data looks as follows:
dataSet1 [
{x : [09, 10, 11, 12. 13]}
{y: [7,8,9,92,100]}
];
dataSet2 [
{x : [13, 14]}
{y: [100, 120]}
];
Since the last datapoint of dataSet1 and the first point of dataSet2 is exactly the same tooltip is displayed twice on hover.
I’d like to know how to hide one of them. Any suggestions?