up vote 8 down vote favorite
1
share [g+] share [fb]

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

alt text

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

  1. Consist of a single DLL
  2. Abstract the full functionality of the API, not just a subset
  3. Be databindable
  4. Be available declaratively (e.g.

      <gchart:barchart runat=server ... />
    
  5. 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?

link|improve this question

74% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I've done a little more digging and found a class that looks like it might do what I need:

Another .NET Google Charts API Wrapper

Has anyone worked with this class?

link|improve this answer
I know the link is nearly 2 years old but that site is now down. – Chris Lively Jun 1 '10 at 16:44
feedback

For a complete listing of all Google Chart wrapper APIs (including .Net wrappers) see here.

link|improve this answer
feedback

Take a look to this project Google Charts for ASP .NET.

link|improve this answer
Thanks. I played with this a bit - it doesn't seem to be quite there. It doesn't expose the full API, it's not databindable, and it doesn't have a programmatic interface that I can tell. Please correct me if I'm wrong. – Herb Caudill Sep 24 '08 at 3:25
feedback

Your Answer

 
or
required, but never shown

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