SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
Hi,
Is there a property in XAML to display series name of each FastLineRenderableSeries? TIA
Hi there
The property you’re looking for is on the DataSeries. You can set it like this:
var lineSeries = new FastLineRenderableSeries();
var dataSeries = new XyDataSeries<double,double>() { DataSeriesName = "My Series" };
lineSeries.DataSeries = dataSeries;
Then, the name will be displayed in tooltips and legends added to the chart.
Please let me know if this helps!
Best regards,
Andrew
Please login first to submit.