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

Side by Side Diff: packages/charted/examples/charts/renderers/demo_line_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="ordinal-line-chart">
11 <div class="chart-title-wrapper">
12 <div class="chart-title">Ordinal dimension</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="ordinal-with-breaks">
21 <div class="chart-title-wrapper">
22 <div class="chart-title">Ordinal dimension with breaks</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="ordinal-with-negative">
31 <div class="chart-title-wrapper">
32 <div class="chart-title">
33 Ordinal dimension (with negative values)
34 </div>
35 </div>
36 <div class="chart-host-wrapper">
37 <div class="chart-host" dir="ltr"></div>
38 <div class="chart-legend-host"></div>
39 </div>
40 </div>
41
42 <div class="chart-wrapper" id="time-series-chart">
43 <div class="chart-title-wrapper">
44 <div class="chart-title">Time series</div>
45 </div>
46 <div class="chart-host-wrapper">
47 <div class="chart-host" dir="ltr"></div>
48 <div class="chart-legend-host"></div>
49 </div>
50 </div>
51 </div>
52 <script type="application/dart" src="demo_line_charts.dart"></script>
53 <script src="packages/browser/dart.js"></script>
54 </body>
55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698