vote up 0 vote down star

I've tried to use MSChart and ZedGraph but they both require Full Trust. Are there any other graphing libraries that I could use in Medium Trust webhosting? I have to note that I have very low ASP.NET knowledge so far.

Thanks, Petr

EDIT: At the end, ZedGraph seems to be running well in Medium Trust. I just added the following line to AssemblyInfo.cs in the ZedGraph source code, recompiled and all is running OK:

[assembly: AllowPartiallyTrustedCallers ]
flag

36% accept rate

1 Answer

vote up 0 vote down

I suggest you look at the google visualisation API - I use this in my project with great success. This requires no component on the server, but does require the use of JavaScript. They also have an API to create chart images which don't require JavaScript, though you are limited in the amount of data you can encode into a URL to produce these.

Visualisation API (Samples)

Google Chart API (Samples)

link|flag
Thanks, I will take a look on this. Anyway, I will probably need to draw many points (say 20 curves with 50 points each), so I don't know if this will be usable. – petrv Sep 23 at 9:48
It's definitely possible with the JavaScript one. It's less likely using the charting library. It just enables you to create graphs without any server-side component. – Richard Sep 23 at 15:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.