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
270
Newie Question for Simple charting
posted

We have is a somewhat unique situation.  we are not using standard Asp.net which produces .Aspx pages, we are using C# that will grab data from a sql server database and do some other manipulations then output it to a standard html page.

so for example we will execute a function on our website that will invoke a dll that will grab data, format it and them do a response.write to a html page.

it's our understand that your charting tool is a server control that requires a webform as a container in order for it to be used.  It is our hope that we have a misunderstand and that we can invoke the your charting tool object via it's API and dynamically create, render it to an html page since our enviroment and content management software does not allow nor support the use of .NET webforms.  if you need additional information please let me know.

 thanks for your assistance as we try to determine if your product will in our unique environment.

 any examples to generate a simple graph would be greatly appreciated.

I am looking for something like this

 

Chart newChart = new Chart();

newChart.ID = "MyChart1";

newChart.Width = 400;

newChart.Height = 200;

Label1.Text=newChart.RenderControl();

Parents Reply Children
No Data