You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When tooltips on a chart are disabled using TooltipPosition="Hidden" this also disables the neat hover functionality which highlights a point once the cursor is above it.
Describe the solution you'd like
In my application I do not want tooltips, but I really like the hover feature, so it would be nice to have a setting to disable tooltips, but keep hover.
Describe alternatives you've considered
As a workaround I have defined a custom tooltip class which does nothing:
public class CustomTooltip : IChartTooltip<SkiaSharpDrawingContext>
{
public void Show(IEnumerable<ChartPoint> foundPoints, Chart<SkiaSharpDrawingContext> chart)
{
}
public void Hide(Chart<SkiaSharpDrawingContext> chart)
{
}
}
Is your feature request related to a problem? Please describe.
When tooltips on a chart are disabled using
TooltipPosition="Hidden"
this also disables the neat hover functionality which highlights a point once the cursor is above it.Describe the solution you'd like
In my application I do not want tooltips, but I really like the hover feature, so it would be nice to have a setting to disable tooltips, but keep hover.
Describe alternatives you've considered
As a workaround I have defined a custom tooltip class which does nothing:
And added it to my chart:
This works but a config option would be cleaner and probably cause less overhead when drawing the chart.
The text was updated successfully, but these errors were encountered: