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

Side by Side Diff: packages/charted/examples/charts/renderers/demo_pie_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 pie and donut charts</title>
6 <link rel="stylesheet" href="../demo_charts.css">
7 </head>
8 <body>
9 <div>
10 <div class="chart-wrapper" id="simple-pie-chart">
11 <div class="chart-title-wrapper">
12 <div class="chart-title">Simple pie chart</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="simple-donut-chart">
21 <div class="chart-title-wrapper">
22 <div class="chart-title">Simple donut chart</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="pie-chart-with-count">
31 <div class="chart-title-wrapper">
32 <div class="chart-title">Pie chart with 5 pies</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
40 <div class="chart-wrapper" id="donut-chart-with-count">
41 <div class="chart-title-wrapper">
42 <div class="chart-title">Donut chart with 5 pies</div>
43 </div>
44 <div class="chart-host-wrapper">
45 <div class="chart-host" dir="ltr"></div>
46 <div class="chart-legend-host"></div>
47 </div>
48 </div>
49 </div>
50 <script type="application/dart" src="demo_pie_charts.dart"></script>
51 <script src="packages/browser/dart.js"></script>
52 </body>
53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698