Hi there,
I'm working with a multi series chart in Blazor, and have a use case I'm struggling to accomplish
The chart is bound against a set of complex data that looks like so
class Data
{
string x;
double y1;
double y2;
}
What I'd like to do is plot two series (a line + column) against y1, but have the tooltip for the line show Y2 instead of Y1.
So hovering over the column gives x : y1
And hovering over the line gives x : y2
But the line follows the columns rather than being plotted against its own axis.
From what I've tried the tooltip seems to be tied to the series it's on. Is there a way to customize the tooltip using the data itself?
Thanks,
Greg Slasor