We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9452916 commit ed85a05Copy full SHA for ed85a05
index.d.ts
@@ -1,24 +1,14 @@
1
2
import * as React from 'React';
3
4
-enum ChartType {
5
- doughnut = 'doughnut',
6
- pie = 'pie',
7
- line = 'line',
8
- bar = 'bar',
9
- horizontalBar = 'horizontalBar',
10
- radar = 'radar',
11
- polarArea = 'polarArea'
12
-}
13
-
14
interface ChartComponentProps {
15
data :Object;
16
height? :number;
17
legend? :Object;
18
onElementsClick? :Function;
19
options? :Object;
20
redraw? :boolean;
21
- type? :ChartType;
+ type? :String;
22
width? :number;
23
}
24
0 commit comments