Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
XamDataChart show busyindicator while drawing
posted

Hello,

I have a XamDataChart that I put a lot of series (10-50) in with plenty of points in for each (500-1.000) and understandably it takes a while to render. While I generate the data I have a XamBusyIndicator showing. I can't use the following code on a worker thread:

foreach (ScatterSplineSeries ser in sps) { dataChart.Series.Add(ser); }

because dataChart is not owned by it. What I want to know is if there is a way to put the data in there (probably from the gui thread) and then continue displaying the busyindicator while the datachart is loading.

Thanks.