views:

41

answers:

1

I want to use the Google Line chart in a way that there should be multiple lines being plotted, having multiple Data Points on each line. And when i click any data point then a small popup opens 0n that point which shows the further details regarding that point..

A: 

Google offers two distinct charting APIs. One is the Google Charts API, and the other is the Google Visualization API.

The Charts API will return an image, rendered on Google's servers. However this image is obviously not interactive, as you can see below:

Google Charts API

On the other hand, the Visualization API is able to render interactive charts and other visualizations. From what you describe, it looks like you might be interested in something like the following:

Daniel Vassallo