"Bar chart"의 두 판 사이의 차이
pinocchio
(문서를 비움) |
|||
| 1번째 줄: | 1번째 줄: | ||
| + | <html> | ||
| + | <head> | ||
| + | <script type="text/javascript"> | ||
| + | google.charts.load("current", {packages:["corechart"]}); | ||
| + | google.charts.setOnLoadCallback(drawChart); | ||
| + | function drawChart() { | ||
| + | var data = google.visualization.arrayToDataTable([ | ||
| + | ["Element", "Density", { role: "style" } ], | ||
| + | ["Copper", 8.94, "#b87333"], | ||
| + | ["Silver", 10.49, "silver"], | ||
| + | ["Gold", 19.30, "gold"], | ||
| + | ["Platinum", 21.45, "color: #e5e4e2"] | ||
| + | ]); | ||
| + | var view = new google.visualization.DataView(data); | ||
| + | view.setColumns([0, 1, | ||
| + | { calc: "stringify", | ||
| + | sourceColumn: 1, | ||
| + | type: "string", | ||
| + | role: "annotation" }, | ||
| + | 2]); | ||
| + | |||
| + | var options = { | ||
| + | title: "Density of Precious Metals, in g/cm^3", | ||
| + | width: 600, | ||
| + | height: 400, | ||
| + | bar: {groupWidth: "95%"}, | ||
| + | legend: { position: "none" }, | ||
| + | }; | ||
| + | var chart = new google.visualization.BarChart(document.getElementById("barchart_values")); | ||
| + | chart.draw(view, options); | ||
| + | } | ||
| + | </script> | ||
| + | <div id="barchart_values" style="width: 900px; height: 300px;"></div> | ||
| + | </body> | ||
| + | </html> | ||
2018년 2월 9일 (금) 00:18 판