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

Side by Side Diff: packages/charted/examples/charts/renderers/demo_cartesian_renderers.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; Renderers Demo</title>
6 <link rel="stylesheet" href="../demo_charts.css">
7 <style>
8 body {
9 padding: 0;
10 margin: 0;
11 }
12 .controls {
13 padding: 30px;
14 border-right: 1px solid #d3d3d3;
15 background-color: #eeeeee;
16 display: flex;
17 flex-direction: column;
18 justify-content: space-between;
19 overflow: auto;
20 min-width: 250px;
21 max-width: 250px;
22 position: fixed;
23 height: 100%;
24 }
25 .control-category {
26 padding: 10px 0;
27 border-bottom: 1px solid #cccccc;
28 }
29 .control-category:last-child {
30 border-bottom: 0;
31 }
32 button, select {
33 margin-bottom: 10px;
34 }
35 .demos-container {
36 min-width: 600px;
37 max-width: 1000px;
38 margin-left: 325px;
39 }
40 </style>
41 </head>
42 <body>
43 <div class="controls">
44 <div class="controls-inner">
45 <h1 class="title">Charted &mdash; Cartesian chart renderers</h1>
46 Source code for this demo is available in
47 <a href="https://github.com/google/charted/tree/master/web">
48 the Charted GitHub repository</a>
49 <div class="control-category">
50 <h2>Internationalization</h2>
51 <div>
52 <input type="checkbox" id="rtl-use-script"/>
53 <label for="rtl-use-script">Use RTL script</label>
54 </div>
55 <div>
56 <input type="checkbox" id="rtl-use-layout"/>
57 <label for="rtl-use-layout">Use RTL Layout</label>
58 </div>
59 <div>
60 <input type="checkbox" id="rtl-switch-axes" disabled/>
61 <label for="rtl-switch-axes">Switch axis direction for RTL</label>
62 </div>
63 </div>
64 </div>
65 </div>
66 <div class="demos-container">
67 <div class="chart line-chart"></div>
68 <div class="chart bar-chart"></div>
69 <div class="chart grouped-bar-chart"></div>
70 <div class="chart stacked-bar-chart"></div>
71 <div class="chart horiz-bar-chart"></div>
72 <div class="chart horiz-grouped-bar-chart"></div>
73 <div class="chart horiz-stacked-bar-chart"></div>
74 <div class="chart combo-chart"></div>
75 <div class="chart combo2-chart"></div>
76 <div class="chart bubble-chart"></div>
77 </div>
78 <script type="application/dart" src="demo_cartesian_renderers.dart"></script >
79 <script src="packages/browser/dart.js"></script>
80 </body>
81 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698