added 'scatter' to ChartType list

This commit is contained in:
Tyler Singer-Clark 2018-09-17 11:10:08 -04:00
parent 38d022f09e
commit b587df4052

View File

@ -163,7 +163,7 @@ interface Model {
}
declare namespace Chart {
type ChartType = 'line' | 'bar' | 'horizontalBar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble' | 'pie';
type ChartType = 'line' | 'bar' | 'horizontalBar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble' | 'pie' | 'scatter';
type TimeUnit = 'millisecond' | 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';