Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Side by Side Diff: packages/charted/examples/charts/renderers/demo_combo_charts.html

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Charted &mdash; Demo of column and bar charts</title>
6 <link rel="stylesheet" href="../demo_charts.css">
7 </head>
8 <body>
9 <div>
10 <div class="chart-wrapper" id="bar-line-combo-chart">
11 <div class="chart-title-wrapper">
12 <div class="chart-title">Bar and line combo</div>
13 </div>
14 <div class="chart-host-wrapper">
15 <div class="chart-host" dir="ltr"></div>
16 <div class="chart-legend-host"></div>
17 </div>
18 </div>
19
20 <div class="chart-wrapper" id="grouped-bar-line-combo-chart">
21 <div class="chart-title-wrapper">
22 <div class="chart-title">Grouped bar and line combo</div>
23 </div>
24 <div class="chart-host-wrapper">
25 <div class="chart-host" dir="ltr"></div>
26 <div class="chart-legend-host"></div>
27 </div>
28 </div>
29
30 <div class="chart-wrapper" id="stacked-bar-line-combo-chart">
31 <div class="chart-title-wrapper">
32 <div class="chart-title">Stacked bar and line combo</div>
33 </div>
34 <div class="chart-host-wrapper">
35 <div class="chart-host" dir="ltr"></div>
36 <div class="chart-legend-host"></div>
37 </div>
38 </div>
39 </div>
40 <script type="application/dart" src="demo_combo_charts.dart"></script>
41 <script src="packages/browser/dart.js"></script>
42 </body>
43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698