Merge pull request #21405 from kubedan/master

[chart.js] Add 'pie' to ChartType
This commit is contained in:
Daniel Rosenwasser
2017-11-10 13:25:32 -08:00
committed by GitHub
+1 -1
View File
@@ -78,7 +78,7 @@ interface Size {
}
declare namespace Chart {
type ChartType = 'line' | 'bar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble';
type ChartType = 'line' | 'bar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble' | 'pie';
type TimeUnit = 'millisecond' | 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';