RadzenChart tooltips

Would it be possible to provide some kind of boolean option on RadzenChart’s RadzenDonutSeries and RadzenPieSeries that would additionally show the defined ToolTipTemplate on the items in the legend as well?

Consider a dataset with some really large numbers in conjunction with very small numbers as depicted in the playground sample below. It becomes difficult to hover over the tiny slices of the pie/donut:

Hi @lanceGeorgeson,

We could add a new ShowTooltipOnLegend property for RadzenPieSeries and RadzenDonutSeries. When set to true, clicking a legend item will display the tooltip for the corresponding slice - useful for exactly the scenario you described with tiny slices.

<RadzenPieSeries Data="@data" CategoryProperty="Company" ValueProperty="Share" ShowTooltipOnLegend="true" />

Note that due to how chart tooltips are implemented hover won't be supported - only click. Would this work for your use case?

UPDATE: We've managed to add support for hovers too. Will be part of the next release.

Awesome, the hover is definitely desired, thanks for the extra attention on this detail. As always, the quick turnaround is appreciated.