[chart.js] Add 'pie' to ChartType

This commit is contained in:
Kubicek Daniel
2017-11-10 14:42:25 +01:00
parent 68cd19ffcf
commit 528774a8a6

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';