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
public Paint KeyPaint
{
get
{
if (ColorUtil.IsDark())
return new SolidColorPaint(SKColors.White);
else
return new SolidColorPaint(SKColors.Black);
}
}
public Paint KeyBackground
{
get
{
if (ColorUtil.IsDark())
return new SolidColorPaint(SKColors.Black);
else
return new SolidColorPaint(SKColors.White);
}
}
Expected behavior
The legend should remain visible but instead disappears when I hover over the control.
Describe the bug
When I hover over my pie chart, the legend disappears
To Reproduce
I have a pie chart set up like this:
The key binding is set to this in the page
Expected behavior
The legend should remain visible but instead disappears when I hover over the control.
Screenshots
Here's a video of it happening:
https://github.com/user-attachments/assets/b6eaf2b0-5e08-4699-80f4-a1b8c185e8d8
If I remove the binding to the text color it works but this looks bad in the dark theme:
I am using LiveCharts 2.0.0-rc4.5 for WinUI
Thanks!
The text was updated successfully, but these errors were encountered: