vote up 8 vote down star
1

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?

flag

66% accept rate

3 Answers

vote up 1 vote down

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

link|flag
vote up 2 vote down check

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|flag
vote up 0 vote down

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

link|flag
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

Your Answer

Get an OpenID
or

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