From 7ce5d84dfae76754086f9f956719f9f8650f926c Mon Sep 17 00:00:00 2001 From: Victor D'Agata Date: Fri, 10 Nov 2017 17:14:09 -0500 Subject: [PATCH] Fix LineOptions Interface Allow using string, date objects when time series is used in x axis --- types/c3/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/c3/index.d.ts b/types/c3/index.d.ts index eb727233a0..287e030445 100644 --- a/types/c3/index.d.ts +++ b/types/c3/index.d.ts @@ -636,7 +636,7 @@ declare namespace c3 { } interface LineOptions { - value: number; + value: string | number | Date; text?: string; axis?: string; position?: string;