I'm developing an app for Windows 10 Mobile and need to draw a chart within that app, which I am doing with the WinRTXamlToolkit for UWP.
All in all the charts work pretty good when it comes to styling, populating with data etc, but a major problem I have is, that the rendering of the chart needs +-15 seconds, which is quite blocking a fluent user experience...
The chart gets filled with 512 values, has two series (areaseries + lineseries) and some custom styling via xaml (chart itself is created in C#). Any possible way to speed it up?
Thanks
ChartPanel.Child = chartwhere ChartPanel is an empty StackPanel) Any Ideas?ElevationChart.Height = ActualHeight / 2.5;ElevationAreaSeries.ItemsSource = eleChart.Items;ElevationAreaSeries.DependentRangeAxis = eleChart.DependentRangeAxis;ElevationAreaSeries.IndependentAxis = eleChart.IndependentAxis;But the loading/rendering of the chart is still as slow as before. Nobody any idea?