I'm trying unsuccessfully to set different tool-tips for different series.
I want some series tool-tips to be visible but others not. It seems that the visibility of the tool-tip on the last series determines the visibility of the tool-tips on ALL series. Does it have to be this way or am I doing something wrong.
.Series(series => { series.Donut(Model.Data.Bands.Where(b => b.ID == 1).First().Sections); }).Tooltip(t => t.Visible(true))
.Series(series => { series.Donut(Model.Data.Bands.Where(b => b.ID == 2).First().Sections); }).Tooltip(t => t.Visible(false))
The above hides the tool-tips on both series.
I want some series tool-tips to be visible but others not. It seems that the visibility of the tool-tip on the last series determines the visibility of the tool-tips on ALL series. Does it have to be this way or am I doing something wrong.
.Series(series => { series.Donut(Model.Data.Bands.Where(b => b.ID == 1).First().Sections); }).Tooltip(t => t.Visible(true))
.Series(series => { series.Donut(Model.Data.Bands.Where(b => b.ID == 2).First().Sections); }).Tooltip(t => t.Visible(false))
The above hides the tool-tips on both series.