Page 1 of 1

Understanding Steema.TeeChart.Chart component

Posted: Tue Jun 06, 2023 7:54 am
by 15695484
Hi,

For ASP.NET 4.x development, what is the difference between using:

Steema.TeeChart.Chart vs. Steema.TeeChart.Web.WebChart ?

It seems they are inter-changeable?

I cannot find a description in the documentation or I missed it somewhere.

Thank you

Re: Understanding Steema.TeeChart.Chart component

Posted: Tue Jun 06, 2023 9:50 am
by Christopher
Hello,
cjherasmus wrote:
Tue Jun 06, 2023 7:54 am
It seems they are inter-changeable?
Not really. WebChart derives from DataBoundControl and is a minimal implementation of it to enable the Chart class to export an image to it and so to appear on an ASP.NET WebForm. All of the Charting code needed to create TeeCharts is in the Chart class, the WebChart is really just a composer for it.

Re: Understanding Steema.TeeChart.Chart component

Posted: Wed Jun 07, 2023 8:10 am
by 15695484
Thank you Christopher.