OLD | NEW |
| (Empty) |
1 <!-- | |
2 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
3 for details. All rights reserved. Use of this source code is governed by a | |
4 BSD-style license that can be found in the LICENSE file. | |
5 | |
6 The sample is based on the Bubble Chart example here: | |
7 https://developers.google.com/chart/interactive/docs/gallery/bubblechart | |
8 | |
9 The original sample is released under the Apache license: | |
10 (http://www.apache.org/licenses/LICENSE-2.0.html) | |
11 --> | |
12 | |
13 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> | |
14 <html xmlns="http://www.w3.org/1999/xhtml"> | |
15 <head> | |
16 <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
17 <title> | |
18 Google Visualization API Sample | |
19 </title> | |
20 </head> | |
21 | |
22 <body style="font-family: Arial;border: 0 none;"> | |
23 <div id="visualization" style="width: 600px; height: | |
24 400px;"></div> | |
25 | |
26 <script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
27 <script type="application/dart" src="bubblechart.dart"></script> | |
28 <script src="packages/browser/dart.js"></script> | |
29 <script src="packages/browser/interop.js"></script> | |
30 </body> | |
31 </html> | |
OLD | NEW |