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

Unified Diff: runtime/observatory/lib/src/elements/metrics.html

Issue 1310153002: Switch from Google charts to Charted (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/lib/src/elements/metrics.dart ('k') | runtime/observatory/observatory_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/metrics.html
diff --git a/runtime/observatory/lib/src/elements/metrics.html b/runtime/observatory/lib/src/elements/metrics.html
index 899292abec8746a4e1b47ef214c3e3f31d58030d..a6a041177b1c3283dad78260fce6d3023b4c5794 100644
--- a/runtime/observatory/lib/src/elements/metrics.html
+++ b/runtime/observatory/lib/src/elements/metrics.html
@@ -127,12 +127,20 @@
<polymer-element name="metrics-graph" extends="observatory-element">
<template>
<link rel="stylesheet" href="css/shared.css">
+ <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quantum_theme.css">
<style>
- .graph {
- min-height: 600px;
- }
+.chart-wrapper {
+ padding: 40px;
+ width: 800px;
+}
+.chart-host-wrapper {
+ height: 300px;
+}
</style>
- <div id="graph" class="graph">
+ <div class="chart-wrapper" id="metric-chart">
+ <div class="chart-host-wrapper">
+ <div class="chart-host" dir="ltr"></div>
+ </div>
</div>
</template>
</polymer-element>
« no previous file with comments | « runtime/observatory/lib/src/elements/metrics.dart ('k') | runtime/observatory/observatory_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698