From 9fb56fc26d8c6aada2fa7e8975bc153b45b2066a Mon Sep 17 00:00:00 2001 From: Jiri Spac Date: Mon, 11 Feb 2019 11:47:16 +0100 Subject: [PATCH] adds cubicInterpolationMode prop to ChartLineOptions charts do respect the property as documented here https://www.chartjs.org/docs/latest/charts/line.html#cubicinterpolationmode --- types/chart.js/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/chart.js/index.d.ts b/types/chart.js/index.d.ts index 8e795ed77c..0b78644a96 100644 --- a/types/chart.js/index.d.ts +++ b/types/chart.js/index.d.ts @@ -417,6 +417,7 @@ declare namespace Chart { } interface ChartLineOptions { + cubicInterpolationMode?: 'default' | 'monotone'; tension?: number; backgroundColor?: ChartColor; borderWidth?: number;