After hiding certain CrosshairElements (look at example), points ( related with elements ) are highlighted . But they should not be highlighted
because the values not visible in Crosshair.
Example:
public void OnCustomDrawCrosshair(CustomDrawCrosshairEventArgs e)
{
if (e.CrosshairElementGroups != null && e.CrosshairElementGroups.Count != 0)
{
foreach (var val in e.CrosshairElementGroups)
{
foreach (var elem in val.CrosshairElements)
{
if(elem.SeriesPoint.Argument.Equals( x))
elem.Visible = false;
}
}
}
}
Whether there is any way to fix this?
P.S. it's necessary for fix
https://www.devexpress.com/Support/Center/Question/Details/T286676
Hi Irina,
Thank you for your report. We will discuss this scenario with the team and check for a suitable solution. Your patience is appreciated.