The Google Charts API offers a super-simple URL-based interface for visualizing data, and it's free for most uses. For example
http://chart.apis.google.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World
gives you
Any recommendations out there for a good .NET library that wraps this? I've played with a couple of things out there and haven't been that impressed.
In my mind the perfect library would
- Consist of a single DLL
- Abstract the full functionality of the API, not just a subset
- Be databindable
Be available declaratively (e.g.
<gchart:barchart runat=server ... />Be available programmatically (e.g. allow me to add properties, datasets, etc. and then extract a URL string)
Dim MyChart as New BarChart() MyChart.Datatables.Add(...) ... Return MyChart.Url
Is anything like that out there?