How to create charts with Google Chart API in asp.net?

How to create charts with Google Chart API in asp.net?

+4


source to share


4 answers


Google is a good place to start ...

Google Charts API as ASP.NET 2.0 Server Control

Google Chart Net



Or better yet, use the new ASP.NET graphical control

ASP.NET Chart Management

+4


source


Please refer to the article about 4guysfromrolla

Creating charts with the google charts API using ASP.NET



Setting up a custom ASP.NET server for Google Chart

+1


source


FYI there are many Google Chart APIs Wrapper APIs that will make your life easier in terms of using the low level Google Chart API Details. I wrote one side of Java (called charts4j ). But there is also at least one wrapper API in the .NET arena.

I'm not completely familiar with ASP.Net stack, but you probably want to create a Google Chart URL server and render that URL using HTML viewer technology in an image tag. An alternative is to pass the data to the browser and plot the URL of the chart using javascript, but this is likely to be more tedious and error prone. Hope it helps.

+1


source


It is not that hard to consider 1. Create a data table for the chart and save it in Json format 2. Use jquery getJson function to get it, then follow google API for Parse Json file then there is a graph I have made many graphs using this method using c #

+1


source







All Articles