Hi Herbert,
Thanks for contacting Syncfusion support
We are not able to get your exact requirement. We have
prepared a sample with range navigator content with more than one series, can
you please check with the sample in the following location? Could you modify
the sample based on your requirement which would be more appreciable?
Please let us know in case of any query
Regards,
Suresh S
Hi Herbert,
Thanks for your reply
We have analyzed your query and navigator content can be
added dynamically as shown in the below code snippet. Also we have prepared
sample demonstrating this please download it from below location.
Code Snippet [C#]:
private void Button_Click(object sender, RoutedEventArgs e)
{
SfLineSparkline sparkline = new SfLineSparkline();
sparkline.YBindingPath = "High";
sparkline.ItemsSource =
model.StockPriceDetails;
RangeNavigator.Content = sparkline;
}
Sample: range_navigator_468c2e8f.zip
Please let us know in case of any query
Regards,
Suresh S
Hi Herbert,
Thanks for reply
We have analyzed your query, more than one sparkline can be
added to navigator content as shown in below code snippet,
Code Snippet [C#]:
private void Button_Click(object sender, RoutedEventArgs e)
{
SfLineSparkline sparkline = new SfLineSparkline();
SfLineSparkline sparkline1 = new SfLineSparkline();
Grid grid = new Grid();
sparkline.YBindingPath = "High";
sparkline.ItemsSource =
model.StockPriceDetails;
sparkline1.YBindingPath = "Low";
sparkline1.ItemsSource =
model.StockPriceDetails;
grid.Children.Add(sparkline);
grid.Children.Add(sparkline1);
RangeNavigator.Content = grid;
}
Please let us know in case of any query
Regards,
Suresh S