how to refresh teechart in silverlight?
how to refresh teechart in silverlight?
how to refresh teechart in silverlight?
Re: how to refresh teechart in silverlight?
can't find "Teechart.refresh()" in SL,
we alway use this function refresh teechart in VCL
we alway use this function refresh teechart in VCL
Re: how to refresh teechart in silverlight?
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,
If you want to refresh Chart using Silverlight, I recommend that use property Invalidate () of Chart, as next line:
Code: Select all
tChart1.Invalidate();
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: how to refresh teechart in silverlight?
what about "autorepaint = true"?
Re: how to refresh teechart in silverlight?
Hello changyj,
I hope will helps.
Thanks,
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.what about "autorepaint = true"?
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |