Page 1 of 1
how to refresh teechart in silverlight?
Posted: Fri Aug 13, 2010 3:24 am
by 15656724
how to refresh teechart in silverlight?
Re: how to refresh teechart in silverlight?
Posted: Fri Aug 13, 2010 3:28 am
by 15656724
can't find "Teechart.refresh()" in SL,
we alway use this function refresh teechart in VCL
Re: how to refresh teechart in silverlight?
Posted: Fri Aug 13, 2010 12:08 pm
by 10050769
Hello changyj ,
If you want to refresh Chart using Silverlight, I recommend that use property Invalidate () of Chart, as next line:
I hope will helps.
Thanks,
Re: how to refresh teechart in silverlight?
Posted: Fri Aug 13, 2010 2:28 pm
by 15656724
what about "autorepaint = true"?
Re: how to refresh teechart in silverlight?
Posted: Mon Aug 16, 2010 8:23 am
by 10050769
Hello changyj,
what about "autorepaint = true"?
autorepaint property of chart is true by default and usually is deactivated when you populate series with many points or chart with many series, because don't repaint every time that you add a point in series or new series in the chart. Therefore, if you want refresh chart with TeeChartSilverlight, you need use property Invalidate() of Chart.
I hope will helps.
Thanks,
Re: how to refresh teechart in silverlight?
Posted: Thu Aug 19, 2010 3:28 am
by 15656724
ths!