'd like to display multiple series on the same chart. When the user taps the chart, I'd like to highlight one or two series, and grey out the rest. The user could then compare the series of interest to the trends of other series.
Something to the effect of:
private void SfChart_Tapped(object sender, TappedRoutedEventArgs e)
{
if (series1 isActive)
{
//Highlights two series
series1.Interior.Brush.Color = Colors.Gray;
series2.Interior.Brush.Color = Colors.Red;
series3.Interior.Brush.Color = Colors.Red;
{
else if (series2 isActive)
{
series2.Interior.Brush.Color = Colors.Gray;
series3.Interior.Brush.Color = Colors.Gray;;
series4.Interior.Brush.Color = Colors.Red;
{
else
{
series4.Interior.Brush.Color = Colors.Gray;
series1.Interior.Brush.Color = Colors.Red;
{
}
Not sure if this is a function built into some other aspect of syncfusion charts or what the appropriate properties are for the chart objects to achieve this behavior.