From b587df40521d909cd798f5e8989a8fa2a49c7f5a Mon Sep 17 00:00:00 2001 From: Tyler Singer-Clark Date: Mon, 17 Sep 2018 11:10:08 -0400 Subject: [PATCH] added 'scatter' to ChartType list --- types/chart.js/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/chart.js/index.d.ts b/types/chart.js/index.d.ts index 49027a2bea..8160c001a0 100644 --- a/types/chart.js/index.d.ts +++ b/types/chart.js/index.d.ts @@ -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';