google charts 1 - dipartimento di matematica e informatica char… · both pie and bar charts are...

20
Google Charts Display live data on your site 1

Upload: others

Post on 27-Jul-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Google Charts

Display live data on your site

1

Page 2: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Using Google Charts

https://developers.google.com/chart2

Page 3: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

3

Page 4: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

we want to represent this data

4

Page 5: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Step 1

5

create a container div inside an html page

Page 6: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Step 2

6

create a .js file with the following content

we’re going to define this function!

Page 7: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

7

other packages

• annotationchart • bar • calendar • gauge • geochart • line • map • orgchart • sankey • table • timeline • treemap • wordtree

Page 8: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Step 3create the drawChart() function

8

Page 9: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Step 4define the data

9

my data

Page 10: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

…set the options

10

Page 11: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

…continue

11

end of the drawChart() function

this will draw a pie chart

Page 12: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

12

complete code

Page 13: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Step 5import google’s api and our script inside the html

13

Page 14: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

result 1

14

Page 15: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Customizing the Chart

https://developers.google.com/chart/interactive/docs/gallery/piechart#Configuration_Options 15

Page 16: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

result 2

16

Page 17: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

How about a bar chart?

17

just replace PieChart

with BarChart

Page 18: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

result 3

18

Page 19: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

more charts on https://developers.google.com/chart/interactive/docs/gallery

19

Page 20: google charts 1 - Dipartimento di Matematica e Informatica char… · Both pie and bar charts are included in the corechart package However, if you want a treemap or geo chart on

Both pie and bar charts are included in the corechart package

However, if you want a treemap or geo chart on your page, you must additionally load the 'treemap' or 'geomap' packages.