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

Unified Diff: lib/src/google-chart/google-chart.html

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/google-chart/google-chart.css ('k') | lib/src/google-map/google-map.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/google-chart/google-chart.html
diff --git a/lib/src/google-chart/google-chart.html b/lib/src/google-chart/google-chart.html
index dfec7494f19942dc7b7adbc96650881cfa0394ab..25845665948275e799bd6fa26490ff8240c23430 100644
--- a/lib/src/google-chart/google-chart.html
+++ b/lib/src/google-chart/google-chart.html
@@ -76,7 +76,7 @@ Data can be provided in one of three ways:
*
* Should be one of:
* - `area`, `bar`, `bubble`, `candlestick`, `column`, `combo`, `geo`,
- * `histogram`, `line`, `pie`, `scatter`, `stepped-area`
+ * `histogram`, `line`, `pie`, `scatter`, `stepped-area`, `treemap`
*
* See <a href="https://google-developers.appspot.com/chart/interactive/docs/gallery">Google Visualization API reference (Chart Gallery)</a> for details.
*
@@ -297,7 +297,8 @@ Data can be provided in one of three ways:
'scatter': google.visualization.ScatterChart,
'stepped-area': google.visualization.SteppedAreaChart,
'table': google.visualization.Table,
- 'gauge': google.visualization.Gauge
+ 'gauge': google.visualization.Gauge,
+ 'treemap': google.visualization.TreeMap
};
},
@@ -316,7 +317,8 @@ Data can be provided in one of three ways:
'scatter': 'corechart',
'stepped-area': 'corechart',
'table': 'table',
- 'gauge': 'gauge'
+ 'gauge': 'gauge',
+ 'treemap': 'treemap'
};
},
« no previous file with comments | « lib/src/google-chart/google-chart.css ('k') | lib/src/google-map/google-map.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698