@carbon/charts 1.9.0-rc.5 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (256) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/LICENSE.md +201 -0
  3. package/README.md +9 -19
  4. package/dist/_baseEach-603421de.mjs.map +1 -1
  5. package/dist/_baseEach-cdac417f.js.map +1 -1
  6. package/dist/angle-utils-6f166b40.js.map +1 -1
  7. package/dist/angle-utils-8b6ce998.mjs.map +1 -1
  8. package/dist/axis-chart.d.ts +13 -13
  9. package/dist/chart.d.ts +18 -18
  10. package/dist/charts/alluvial.d.ts +10 -10
  11. package/dist/charts/area-stacked.d.ts +8 -8
  12. package/dist/charts/area.d.ts +8 -8
  13. package/dist/charts/bar-grouped.d.ts +8 -8
  14. package/dist/charts/bar-simple.d.ts +8 -8
  15. package/dist/charts/bar-stacked.d.ts +8 -8
  16. package/dist/charts/boxplot.d.ts +10 -10
  17. package/dist/charts/bubble.d.ts +8 -8
  18. package/dist/charts/bullet.d.ts +10 -10
  19. package/dist/charts/choropleth.d.ts +14 -14
  20. package/dist/charts/circle-pack.d.ts +10 -10
  21. package/dist/charts/combo.d.ts +9 -9
  22. package/dist/charts/donut.d.ts +8 -8
  23. package/dist/charts/gauge.d.ts +10 -10
  24. package/dist/charts/heatmap.d.ts +14 -14
  25. package/dist/charts/histogram.d.ts +10 -10
  26. package/dist/charts/index.d.ts +27 -27
  27. package/dist/charts/line.d.ts +8 -8
  28. package/dist/charts/lollipop.d.ts +8 -8
  29. package/dist/charts/meter.d.ts +10 -10
  30. package/dist/charts/pie.d.ts +10 -10
  31. package/dist/charts/radar.d.ts +10 -10
  32. package/dist/charts/scatter.d.ts +8 -8
  33. package/dist/charts/tree.d.ts +10 -10
  34. package/dist/charts/treemap.d.ts +10 -10
  35. package/dist/charts/wordcloud.d.ts +10 -10
  36. package/dist/choropleth-4ac6ac20.js.map +1 -1
  37. package/dist/choropleth-f473ea0d.mjs.map +1 -1
  38. package/dist/color-scale-utils-5eb3eeaa.mjs.map +1 -1
  39. package/dist/color-scale-utils-7d463811.js.map +1 -1
  40. package/dist/components/axes/axis.d.ts +24 -24
  41. package/dist/components/axes/chart-clip.d.ts +13 -13
  42. package/dist/components/axes/grid-brush.d.ts +10 -10
  43. package/dist/components/axes/grid.d.ts +22 -22
  44. package/dist/components/axes/hover-axis.d.ts +10 -10
  45. package/dist/components/axes/index.d.ts +12 -12
  46. package/dist/components/axes/ruler-binned.d.ts +10 -7
  47. package/dist/components/axes/ruler-stacked.d.ts +4 -4
  48. package/dist/components/axes/ruler.d.ts +30 -27
  49. package/dist/components/axes/toolbar.d.ts +40 -40
  50. package/dist/components/axes/two-dimensional-axes.d.ts +16 -16
  51. package/dist/components/axes/zero-line.d.ts +7 -7
  52. package/dist/components/axes/zoom-bar.d.ts +31 -28
  53. package/dist/components/component.d.ts +30 -30
  54. package/dist/components/diagrams/buildPaths.d.ts +40 -40
  55. package/dist/components/diagrams/index.d.ts +2 -2
  56. package/dist/components/diagrams/markerDefinitions.d.ts +37 -37
  57. package/dist/components/essentials/canvas-chart-clip.d.ts +6 -6
  58. package/dist/components/essentials/color-scale-legend.d.ts +20 -20
  59. package/dist/components/essentials/geo-projection.d.ts +16 -16
  60. package/dist/components/essentials/highlights.d.ts +13 -13
  61. package/dist/components/essentials/index.d.ts +11 -11
  62. package/dist/components/essentials/legend.d.ts +11 -11
  63. package/dist/components/essentials/modal.d.ts +14 -14
  64. package/dist/components/essentials/threshold.d.ts +20 -20
  65. package/dist/components/essentials/title-meter.d.ts +30 -30
  66. package/dist/components/essentials/title.d.ts +20 -20
  67. package/dist/components/essentials/tooltip-axis.d.ts +4 -4
  68. package/dist/components/essentials/tooltip.d.ts +22 -22
  69. package/dist/components/graphs/alluvial.d.ts +14 -14
  70. package/dist/components/graphs/area-stacked.d.ts +11 -11
  71. package/dist/components/graphs/area.d.ts +12 -12
  72. package/dist/components/graphs/bar-grouped.d.ts +22 -22
  73. package/dist/components/graphs/bar-simple.d.ts +12 -12
  74. package/dist/components/graphs/bar-stacked.d.ts +13 -13
  75. package/dist/components/graphs/bar.d.ts +5 -5
  76. package/dist/components/graphs/boxplot.d.ts +9 -9
  77. package/dist/components/graphs/bubble.d.ts +13 -13
  78. package/dist/components/graphs/bullet.d.ts +12 -12
  79. package/dist/components/graphs/choropleth.d.ts +6 -6
  80. package/dist/components/graphs/circle-pack.d.ts +19 -19
  81. package/dist/components/graphs/donut.d.ts +9 -9
  82. package/dist/components/graphs/gauge.d.ts +27 -27
  83. package/dist/components/graphs/heatmap.d.ts +25 -25
  84. package/dist/components/graphs/histogram.d.ts +12 -12
  85. package/dist/components/graphs/index.d.ts +28 -28
  86. package/dist/components/graphs/line.d.ts +11 -11
  87. package/dist/components/graphs/lollipop.d.ts +14 -14
  88. package/dist/components/graphs/meter.d.ts +10 -10
  89. package/dist/components/graphs/pie.d.ts +16 -16
  90. package/dist/components/graphs/radar.d.ts +25 -25
  91. package/dist/components/graphs/scatter-stacked.d.ts +8 -8
  92. package/dist/components/graphs/scatter.d.ts +21 -21
  93. package/dist/components/graphs/skeleton-lines.d.ts +12 -12
  94. package/dist/components/graphs/skeleton.d.ts +23 -23
  95. package/dist/components/graphs/tree.d.ts +9 -9
  96. package/dist/components/graphs/treemap.d.ts +11 -11
  97. package/dist/components/graphs/wordcloud.d.ts +12 -12
  98. package/dist/components/index.d.ts +6 -6
  99. package/dist/components/layout/index.d.ts +2 -2
  100. package/dist/components/layout/layout.d.ts +18 -18
  101. package/dist/components/layout/spacer.d.ts +5 -5
  102. package/dist/configuration-non-customizable.d.ts +263 -263
  103. package/dist/configuration.d.ts +48 -48
  104. package/dist/demo/charts/alluvial.d.ts +109 -109
  105. package/dist/demo/charts/area.d.ts +224 -224
  106. package/dist/demo/charts/bar.d.ts +681 -681
  107. package/dist/demo/charts/boxplot.d.ts +34 -34
  108. package/dist/demo/charts/bubble.d.ts +141 -141
  109. package/dist/demo/charts/bullet.d.ts +24 -24
  110. package/dist/demo/charts/chart-types.d.ts +128 -128
  111. package/dist/demo/charts/choropleth.d.ts +738 -738
  112. package/dist/demo/charts/circle-pack.d.ts +91 -91
  113. package/dist/demo/charts/combo.d.ts +482 -482
  114. package/dist/demo/charts/donut.d.ts +64 -64
  115. package/dist/demo/charts/gauge.d.ts +40 -40
  116. package/dist/demo/charts/heatmap.d.ts +125 -125
  117. package/dist/demo/charts/hightlight.d.ts +40 -40
  118. package/dist/demo/charts/histogram.d.ts +63 -63
  119. package/dist/demo/charts/index.d.ts +55 -62
  120. package/dist/demo/charts/line.d.ts +361 -361
  121. package/dist/demo/charts/lollipop.d.ts +39 -39
  122. package/dist/demo/charts/meter.d.ts +95 -95
  123. package/dist/demo/charts/pie.d.ts +46 -46
  124. package/dist/demo/charts/radar.d.ts +63 -63
  125. package/dist/demo/charts/scatter.d.ts +118 -118
  126. package/dist/demo/charts/step.d.ts +96 -96
  127. package/dist/demo/charts/time-series-axis.d.ts +293 -293
  128. package/dist/demo/charts/toolbar.d.ts +12 -12
  129. package/dist/demo/charts/topojson-110.d.ts +360 -360
  130. package/dist/demo/charts/tree.d.ts +30 -30
  131. package/dist/demo/charts/treemap.d.ts +15 -15
  132. package/dist/demo/charts/wordcloud.d.ts +14 -14
  133. package/dist/demo/charts/zoom-bar.d.ts +79 -79
  134. package/dist/demo/index.d.ts +4 -4
  135. package/dist/demo/index.js +153 -166
  136. package/dist/demo/index.js.map +1 -1
  137. package/dist/demo/index.mjs +1645 -1834
  138. package/dist/demo/index.mjs.map +1 -1
  139. package/dist/demo/styles.css +567 -262
  140. package/dist/demo/styles.css.map +1 -1
  141. package/dist/demo/utils/index.d.ts +2 -2
  142. package/dist/demo/utils/sandbox.d.ts +38 -39
  143. package/dist/demo/utils/story-widgets.d.ts +7 -7
  144. package/dist/index-a266373c.mjs.map +1 -1
  145. package/dist/index-becfb567.mjs.map +1 -1
  146. package/dist/index-d865d500.js.map +1 -1
  147. package/dist/index-f23685eb.js.map +1 -1
  148. package/dist/index.d.ts +13 -11
  149. package/dist/index.js.map +1 -1
  150. package/dist/index.mjs.map +1 -1
  151. package/dist/interfaces/a11y.d.ts +12 -12
  152. package/dist/interfaces/axis-scales.d.ts +201 -201
  153. package/dist/interfaces/charts.d.ts +520 -517
  154. package/dist/interfaces/components.d.ts +231 -231
  155. package/dist/interfaces/enums.d.ts +261 -261
  156. package/dist/interfaces/events.d.ts +239 -239
  157. package/dist/interfaces/index.d.ts +12 -11
  158. package/dist/interfaces/layout.d.ts +21 -21
  159. package/dist/interfaces/model.d.ts +35 -35
  160. package/dist/interfaces/services.d.ts +20 -20
  161. package/dist/interfaces/truncation.d.ts +17 -17
  162. package/dist/model/alluvial.d.ts +8 -8
  163. package/dist/model/binned-charts.d.ts +7 -7
  164. package/dist/model/boxplot.d.ts +14 -14
  165. package/dist/model/bullet.d.ts +14 -14
  166. package/dist/model/cartesian-charts.d.ts +24 -24
  167. package/dist/model/choropleth.d.ts +29 -29
  168. package/dist/model/circle-pack.d.ts +36 -36
  169. package/dist/model/gauge.d.ts +9 -9
  170. package/dist/model/heatmap.d.ts +57 -57
  171. package/dist/model/index.d.ts +16 -16
  172. package/dist/model/index.js.map +1 -1
  173. package/dist/model/index.mjs.map +1 -1
  174. package/dist/model/meter.d.ts +20 -20
  175. package/dist/model/model.d.ts +110 -110
  176. package/dist/model/pie.d.ts +9 -9
  177. package/dist/model/radar.d.ts +7 -7
  178. package/dist/model/tree.d.ts +14 -14
  179. package/dist/model/treemap.d.ts +8 -8
  180. package/dist/model/wordcloud.d.ts +7 -7
  181. package/dist/services/angle-utils.d.ts +15 -15
  182. package/dist/services/canvas-zoom.d.ts +11 -11
  183. package/dist/services/color-scale-utils.d.ts +2 -2
  184. package/dist/services/curves.d.ts +24 -24
  185. package/dist/services/essentials/dom-utils.d.ts +45 -45
  186. package/dist/services/essentials/events.d.ts +8 -8
  187. package/dist/services/essentials/files.d.ts +7 -7
  188. package/dist/services/essentials/gradient-utils.d.ts +6 -6
  189. package/dist/services/essentials/index.d.ts +5 -5
  190. package/dist/services/essentials/transitions.d.ts +13 -13
  191. package/dist/services/index.d.ts +9 -9
  192. package/dist/services/scales-cartesian.d.ts +89 -89
  193. package/dist/services/service.d.ts +11 -11
  194. package/dist/services/time-series.d.ts +13 -13
  195. package/dist/services/zoom.d.ts +21 -21
  196. package/dist/styles.css +0 -21919
  197. package/dist/styles.css.map +1 -1
  198. package/dist/styles.min.css +1 -1
  199. package/dist/styles.min.css.map +1 -1
  200. package/dist/tools.d.ts +150 -144
  201. package/package.json +48 -33
  202. package/{dist/styles/colors.scss → scss/_colors.scss} +1 -1
  203. package/{dist/styles/tokens.scss → scss/_tokens.scss} +6 -15
  204. package/scss/demos.scss +427 -0
  205. package/scss/index.scss +31 -0
  206. package/dist/styles/styles.scss +0 -40
  207. /package/{dist/styles → scss}/_chart-holder.scss +0 -0
  208. /package/{dist/styles/color-palatte.scss → scss/_color-palette.scss} +0 -0
  209. /package/{dist/styles → scss}/_type.scss +0 -0
  210. /package/{dist/styles → scss}/components/_axis.scss +0 -0
  211. /package/{dist/styles → scss}/components/_callouts.scss +0 -0
  212. /package/{dist/styles → scss}/components/_color-legend.scss +0 -0
  213. /package/{dist/styles → scss}/components/_edge.scss +0 -0
  214. /package/{dist/styles → scss}/components/_grid-brush.scss +0 -0
  215. /package/{dist/styles → scss}/components/_grid.scss +0 -0
  216. /package/{dist/styles → scss}/components/_highlights.scss +0 -0
  217. /package/{dist/styles → scss}/components/_layout.scss +0 -0
  218. /package/{dist/styles → scss}/components/_legend.scss +0 -0
  219. /package/{dist/styles → scss}/components/_marker.scss +0 -0
  220. /package/{dist/styles → scss}/components/_meter-title.scss +0 -0
  221. /package/{dist/styles → scss}/components/_modal.scss +0 -0
  222. /package/{dist/styles → scss}/components/_ruler.scss +0 -0
  223. /package/{dist/styles → scss}/components/_skeleton-lines.scss +0 -0
  224. /package/{dist/styles → scss}/components/_skeleton.scss +0 -0
  225. /package/{dist/styles → scss}/components/_threshold.scss +0 -0
  226. /package/{dist/styles → scss}/components/_title.scss +0 -0
  227. /package/{dist/styles → scss}/components/_toolbar.scss +0 -0
  228. /package/{dist/styles → scss}/components/_tooltip.scss +0 -0
  229. /package/{dist/styles → scss}/components/_zero-line.scss +0 -0
  230. /package/{dist/styles → scss}/components/_zoom-bar.scss +0 -0
  231. /package/{dist/styles → scss}/components/diagrams/_card-node.scss +0 -0
  232. /package/{dist/styles → scss}/components/diagrams/_edge.scss +0 -0
  233. /package/{dist/styles → scss}/components/diagrams/_marker.scss +0 -0
  234. /package/{dist/styles → scss}/components/diagrams/_shape-node.scss +0 -0
  235. /package/{dist/styles → scss}/components/diagrams/index.scss +0 -0
  236. /package/{dist/styles → scss}/components/index.scss +0 -0
  237. /package/{dist/styles → scss}/graphs/_alluvial.scss +0 -0
  238. /package/{dist/styles → scss}/graphs/_area.scss +0 -0
  239. /package/{dist/styles → scss}/graphs/_bubble.scss +0 -0
  240. /package/{dist/styles → scss}/graphs/_bullet.scss +0 -0
  241. /package/{dist/styles → scss}/graphs/_choropleth.scss +0 -0
  242. /package/{dist/styles → scss}/graphs/_circle-pack.scss +0 -0
  243. /package/{dist/styles → scss}/graphs/_donut.scss +0 -0
  244. /package/{dist/styles → scss}/graphs/_gauge.scss +0 -0
  245. /package/{dist/styles → scss}/graphs/_heatmap.scss +0 -0
  246. /package/{dist/styles → scss}/graphs/_line.scss +0 -0
  247. /package/{dist/styles → scss}/graphs/_lollipop.scss +0 -0
  248. /package/{dist/styles → scss}/graphs/_meter.scss +0 -0
  249. /package/{dist/styles → scss}/graphs/_pie.scss +0 -0
  250. /package/{dist/styles → scss}/graphs/_radar.scss +0 -0
  251. /package/{dist/styles → scss}/graphs/_scatter-stacked.scss +0 -0
  252. /package/{dist/styles → scss}/graphs/_scatter.scss +0 -0
  253. /package/{dist/styles → scss}/graphs/_tree.scss +0 -0
  254. /package/{dist/styles → scss}/graphs/_treemap.scss +0 -0
  255. /package/{dist/styles → scss}/graphs/_wordcloud.scss +0 -0
  256. /package/{dist/styles → scss}/graphs/index.scss +0 -0
@@ -1,482 +1,482 @@
1
- export declare const comboSimpleData: ({
2
- group: string;
3
- date: string;
4
- value: number;
5
- temp?: undefined;
6
- } | {
7
- group: string;
8
- date: string;
9
- temp: number;
10
- value?: undefined;
11
- })[];
12
- export declare const comboSimpleOptions: {
13
- title: string;
14
- axes: {
15
- left: {
16
- mapsTo: string;
17
- scaleType: string;
18
- title: string;
19
- };
20
- right: {
21
- mapsTo: string;
22
- scaleType: string;
23
- title: string;
24
- correspondingDatasets: string[];
25
- };
26
- bottom: {
27
- title: string;
28
- mapsTo: string;
29
- scaleType: string;
30
- };
31
- };
32
- comboChartTypes: ({
33
- type: string;
34
- correspondingDatasets: string[];
35
- options?: undefined;
36
- } | {
37
- type: string;
38
- options: {
39
- points: {
40
- radius: number;
41
- };
42
- };
43
- correspondingDatasets: string[];
44
- })[];
45
- };
46
- export declare const comboSimpleFloatingData: ({
47
- group: string;
48
- date: string;
49
- value: number;
50
- temp?: undefined;
51
- } | {
52
- group: string;
53
- date: string;
54
- temp: number[];
55
- value?: undefined;
56
- })[];
57
- export declare const comboSimpleFloatingOptions: {
58
- title: string;
59
- axes: {
60
- left: {
61
- mapsTo: string;
62
- scaleType: string;
63
- title: string;
64
- correspondingDatasets: string[];
65
- };
66
- right: {
67
- mapsTo: string;
68
- title: string;
69
- };
70
- bottom: {
71
- title: string;
72
- mapsTo: string;
73
- scaleType: string;
74
- };
75
- };
76
- comboChartTypes: ({
77
- type: string;
78
- correspondingDatasets: string[];
79
- options?: undefined;
80
- } | {
81
- type: string;
82
- options: {
83
- points: {
84
- radius: number;
85
- };
86
- };
87
- correspondingDatasets: string[];
88
- })[];
89
- height: string;
90
- };
91
- export declare const comboHorizontalData: ({
92
- group: string;
93
- date: string;
94
- value: number;
95
- temp?: undefined;
96
- } | {
97
- group: string;
98
- date: string;
99
- temp: number;
100
- value?: undefined;
101
- })[];
102
- export declare const comboHorizontalOptions: {
103
- title: string;
104
- axes: {
105
- top: {
106
- mapsTo: string;
107
- scaleType: string;
108
- title: string;
109
- };
110
- bottom: {
111
- mapsTo: string;
112
- scaleType: string;
113
- title: string;
114
- correspondingDatasets: string[];
115
- };
116
- left: {
117
- title: string;
118
- mapsTo: string;
119
- scaleType: string;
120
- };
121
- };
122
- comboChartTypes: {
123
- type: string;
124
- options: {};
125
- correspondingDatasets: string[];
126
- }[];
127
- };
128
- export declare const comboStackedData: ({
129
- group: string;
130
- key: string;
131
- value: number;
132
- temp?: undefined;
133
- } | {
134
- group: string;
135
- key: string;
136
- temp: number;
137
- value?: undefined;
138
- })[];
139
- export declare const comboStackedOptions: {
140
- title: string;
141
- axes: {
142
- left: {
143
- title: string;
144
- mapsTo: string;
145
- stacked: boolean;
146
- };
147
- bottom: {
148
- title: string;
149
- mapsTo: string;
150
- scaleType: string;
151
- };
152
- right: {
153
- title: string;
154
- mapsTo: string;
155
- correspondingDatasets: string[];
156
- };
157
- };
158
- comboChartTypes: {
159
- type: string;
160
- options: {};
161
- correspondingDatasets: string[];
162
- }[];
163
- };
164
- export declare const comboGroupedData: ({
165
- group: string;
166
- key: string;
167
- value: number;
168
- temp?: undefined;
169
- } | {
170
- group: string;
171
- key: string;
172
- temp: number;
173
- value?: undefined;
174
- })[];
175
- export declare const comboGroupedOptions: {
176
- title: string;
177
- axes: {
178
- left: {
179
- title: string;
180
- mapsTo: string;
181
- };
182
- bottom: {
183
- scaleType: string;
184
- mapsTo: string;
185
- };
186
- right: {
187
- title: string;
188
- mapsTo: string;
189
- correspondingDatasets: string[];
190
- };
191
- };
192
- comboChartTypes: ({
193
- type: string;
194
- correspondingDatasets: string[];
195
- options?: undefined;
196
- } | {
197
- type: string;
198
- options: {
199
- points: {
200
- filled: boolean;
201
- opacity: number;
202
- };
203
- };
204
- correspondingDatasets: string[];
205
- })[];
206
- };
207
- export declare const comboGroupedHorizontalData: ({
208
- group: string;
209
- key: string;
210
- value: number;
211
- temp?: undefined;
212
- } | {
213
- group: string;
214
- key: string;
215
- temp: number;
216
- value?: undefined;
217
- })[];
218
- export declare const comboGroupedHorizontalOptions: {
219
- title: string;
220
- axes: {
221
- top: {
222
- title: string;
223
- mapsTo: string;
224
- main: boolean;
225
- };
226
- left: {
227
- scaleType: string;
228
- mapsTo: string;
229
- };
230
- bottom: {
231
- title: string;
232
- mapsTo: string;
233
- correspondingDatasets: string[];
234
- };
235
- };
236
- comboChartTypes: {
237
- type: string;
238
- correspondingDatasets: string[];
239
- }[];
240
- };
241
- export declare const comboAreaLineData: ({
242
- group: string;
243
- key: string;
244
- value: number;
245
- temp?: undefined;
246
- } | {
247
- group: string;
248
- key: string;
249
- temp: number;
250
- value?: undefined;
251
- })[];
252
- export declare const comboAreaLineOptions: {
253
- title: string;
254
- points: {
255
- enabled: boolean;
256
- };
257
- axes: {
258
- left: {
259
- title: string;
260
- mapsTo: string;
261
- };
262
- bottom: {
263
- scaleType: string;
264
- mapsTo: string;
265
- };
266
- right: {
267
- title: string;
268
- mapsTo: string;
269
- correspondingDatasets: string[];
270
- };
271
- };
272
- comboChartTypes: ({
273
- type: string;
274
- options: {
275
- points?: undefined;
276
- };
277
- correspondingDatasets: string[];
278
- } | {
279
- type: string;
280
- options: {
281
- points: {
282
- enabled: boolean;
283
- };
284
- };
285
- correspondingDatasets: string[];
286
- })[];
287
- curve: string;
288
- };
289
- export declare const comboLineScatterData: ({
290
- group: string;
291
- key: string;
292
- temp: number;
293
- value?: undefined;
294
- } | {
295
- group: string;
296
- key: string;
297
- value: number;
298
- temp?: undefined;
299
- })[];
300
- export declare const comboLineScatterOptions: {
301
- title: string;
302
- axes: {
303
- left: {
304
- mapsTo: string;
305
- title: string;
306
- };
307
- bottom: {
308
- scaleType: string;
309
- mapsTo: string;
310
- };
311
- right: {
312
- title: string;
313
- mapsTo: string;
314
- scaleType: string;
315
- correspondingDatasets: string[];
316
- };
317
- };
318
- curve: string;
319
- comboChartTypes: {
320
- type: string;
321
- correspondingDatasets: string[];
322
- }[];
323
- };
324
- export declare const comboEmptyData: any[];
325
- export declare const comboEmptyOptions: {
326
- title: string;
327
- axes: {
328
- left: {
329
- mapsTo: string;
330
- title: string;
331
- };
332
- bottom: {
333
- scaleType: string;
334
- mapsTo: string;
335
- };
336
- right: {
337
- title: string;
338
- mapsTo: string;
339
- scaleType: string;
340
- correspondingDatasets: string[];
341
- };
342
- };
343
- comboChartTypes: {
344
- type: string;
345
- correspondingDatasets: string[];
346
- }[];
347
- };
348
- export declare const comboLoadingData: ({
349
- group: string;
350
- key: string;
351
- temp: number;
352
- value?: undefined;
353
- } | {
354
- group: string;
355
- key: string;
356
- value: number;
357
- temp?: undefined;
358
- })[];
359
- export declare const comboLoadingOptions: {
360
- title: string;
361
- axes: {
362
- left: {
363
- mapsTo: string;
364
- title: string;
365
- };
366
- bottom: {
367
- scaleType: string;
368
- mapsTo: string;
369
- };
370
- right: {
371
- title: string;
372
- mapsTo: string;
373
- scaleType: string;
374
- correspondingDatasets: string[];
375
- };
376
- };
377
- data: {
378
- loading: boolean;
379
- };
380
- comboChartTypes: {
381
- type: string;
382
- correspondingDatasets: string[];
383
- }[];
384
- };
385
- export declare const comboStackedAreaLine: ({
386
- group: string;
387
- date: Date;
388
- value: number;
389
- temp?: undefined;
390
- } | {
391
- group: string;
392
- date: Date;
393
- temp: number;
394
- value?: undefined;
395
- })[];
396
- export declare const comboStackedAreaLineOptions: {
397
- title: string;
398
- axes: {
399
- left: {
400
- title: string;
401
- stacked: boolean;
402
- mapsTo: string;
403
- titleOrientation: string;
404
- };
405
- bottom: {
406
- scaleType: string;
407
- mapsTo: string;
408
- };
409
- right: {
410
- title: string;
411
- scaleType: string;
412
- mapsTo: string;
413
- correspondingDatasets: string[];
414
- titleOrientation: string;
415
- };
416
- };
417
- curve: string;
418
- comboChartTypes: ({
419
- type: string;
420
- options: {
421
- points: {
422
- enabled: boolean;
423
- };
424
- };
425
- correspondingDatasets: string[];
426
- } | {
427
- type: string;
428
- correspondingDatasets: string[];
429
- options?: undefined;
430
- })[];
431
- };
432
- export declare const comboAreaLineTimeSeriesData: ({
433
- group: string;
434
- key: Date;
435
- value: number;
436
- temp?: undefined;
437
- } | {
438
- group: string;
439
- key: Date;
440
- temp: number;
441
- value?: undefined;
442
- })[];
443
- export declare const comboAreaLineTimeSeriesOptions: {
444
- title: string;
445
- points: {
446
- enabled: boolean;
447
- };
448
- axes: {
449
- left: {
450
- title: string;
451
- mapsTo: string;
452
- };
453
- bottom: {
454
- scaleType: string;
455
- mapsTo: string;
456
- };
457
- right: {
458
- title: string;
459
- mapsTo: string;
460
- correspondingDatasets: string[];
461
- };
462
- };
463
- comboChartTypes: ({
464
- type: string;
465
- options: {
466
- points?: undefined;
467
- };
468
- correspondingDatasets: string[];
469
- } | {
470
- type: string;
471
- options: {
472
- points: {
473
- enabled: boolean;
474
- };
475
- };
476
- correspondingDatasets: string[];
477
- })[];
478
- curve: string;
479
- timeScale: {
480
- addSpaceOnEdges: number;
481
- };
482
- };
1
+ export declare const comboSimpleData: ({
2
+ group: string;
3
+ date: string;
4
+ value: number;
5
+ temp?: undefined;
6
+ } | {
7
+ group: string;
8
+ date: string;
9
+ temp: number;
10
+ value?: undefined;
11
+ })[];
12
+ export declare const comboSimpleOptions: {
13
+ title: string;
14
+ axes: {
15
+ left: {
16
+ mapsTo: string;
17
+ scaleType: string;
18
+ title: string;
19
+ };
20
+ right: {
21
+ mapsTo: string;
22
+ scaleType: string;
23
+ title: string;
24
+ correspondingDatasets: string[];
25
+ };
26
+ bottom: {
27
+ title: string;
28
+ mapsTo: string;
29
+ scaleType: string;
30
+ };
31
+ };
32
+ comboChartTypes: ({
33
+ type: string;
34
+ correspondingDatasets: string[];
35
+ options?: undefined;
36
+ } | {
37
+ type: string;
38
+ options: {
39
+ points: {
40
+ radius: number;
41
+ };
42
+ };
43
+ correspondingDatasets: string[];
44
+ })[];
45
+ };
46
+ export declare const comboSimpleFloatingData: ({
47
+ group: string;
48
+ date: string;
49
+ value: number;
50
+ temp?: undefined;
51
+ } | {
52
+ group: string;
53
+ date: string;
54
+ temp: number[];
55
+ value?: undefined;
56
+ })[];
57
+ export declare const comboSimpleFloatingOptions: {
58
+ title: string;
59
+ axes: {
60
+ left: {
61
+ mapsTo: string;
62
+ scaleType: string;
63
+ title: string;
64
+ correspondingDatasets: string[];
65
+ };
66
+ right: {
67
+ mapsTo: string;
68
+ title: string;
69
+ };
70
+ bottom: {
71
+ title: string;
72
+ mapsTo: string;
73
+ scaleType: string;
74
+ };
75
+ };
76
+ comboChartTypes: ({
77
+ type: string;
78
+ correspondingDatasets: string[];
79
+ options?: undefined;
80
+ } | {
81
+ type: string;
82
+ options: {
83
+ points: {
84
+ radius: number;
85
+ };
86
+ };
87
+ correspondingDatasets: string[];
88
+ })[];
89
+ height: string;
90
+ };
91
+ export declare const comboHorizontalData: ({
92
+ group: string;
93
+ date: string;
94
+ value: number;
95
+ temp?: undefined;
96
+ } | {
97
+ group: string;
98
+ date: string;
99
+ temp: number;
100
+ value?: undefined;
101
+ })[];
102
+ export declare const comboHorizontalOptions: {
103
+ title: string;
104
+ axes: {
105
+ top: {
106
+ mapsTo: string;
107
+ scaleType: string;
108
+ title: string;
109
+ };
110
+ bottom: {
111
+ mapsTo: string;
112
+ scaleType: string;
113
+ title: string;
114
+ correspondingDatasets: string[];
115
+ };
116
+ left: {
117
+ title: string;
118
+ mapsTo: string;
119
+ scaleType: string;
120
+ };
121
+ };
122
+ comboChartTypes: {
123
+ type: string;
124
+ options: {};
125
+ correspondingDatasets: string[];
126
+ }[];
127
+ };
128
+ export declare const comboStackedData: ({
129
+ group: string;
130
+ key: string;
131
+ value: number;
132
+ temp?: undefined;
133
+ } | {
134
+ group: string;
135
+ key: string;
136
+ temp: number;
137
+ value?: undefined;
138
+ })[];
139
+ export declare const comboStackedOptions: {
140
+ title: string;
141
+ axes: {
142
+ left: {
143
+ title: string;
144
+ mapsTo: string;
145
+ stacked: boolean;
146
+ };
147
+ bottom: {
148
+ title: string;
149
+ mapsTo: string;
150
+ scaleType: string;
151
+ };
152
+ right: {
153
+ title: string;
154
+ mapsTo: string;
155
+ correspondingDatasets: string[];
156
+ };
157
+ };
158
+ comboChartTypes: {
159
+ type: string;
160
+ options: {};
161
+ correspondingDatasets: string[];
162
+ }[];
163
+ };
164
+ export declare const comboGroupedData: ({
165
+ group: string;
166
+ key: string;
167
+ value: number;
168
+ temp?: undefined;
169
+ } | {
170
+ group: string;
171
+ key: string;
172
+ temp: number;
173
+ value?: undefined;
174
+ })[];
175
+ export declare const comboGroupedOptions: {
176
+ title: string;
177
+ axes: {
178
+ left: {
179
+ title: string;
180
+ mapsTo: string;
181
+ };
182
+ bottom: {
183
+ scaleType: string;
184
+ mapsTo: string;
185
+ };
186
+ right: {
187
+ title: string;
188
+ mapsTo: string;
189
+ correspondingDatasets: string[];
190
+ };
191
+ };
192
+ comboChartTypes: ({
193
+ type: string;
194
+ correspondingDatasets: string[];
195
+ options?: undefined;
196
+ } | {
197
+ type: string;
198
+ options: {
199
+ points: {
200
+ filled: boolean;
201
+ opacity: number;
202
+ };
203
+ };
204
+ correspondingDatasets: string[];
205
+ })[];
206
+ };
207
+ export declare const comboGroupedHorizontalData: ({
208
+ group: string;
209
+ key: string;
210
+ value: number;
211
+ temp?: undefined;
212
+ } | {
213
+ group: string;
214
+ key: string;
215
+ temp: number;
216
+ value?: undefined;
217
+ })[];
218
+ export declare const comboGroupedHorizontalOptions: {
219
+ title: string;
220
+ axes: {
221
+ top: {
222
+ title: string;
223
+ mapsTo: string;
224
+ main: boolean;
225
+ };
226
+ left: {
227
+ scaleType: string;
228
+ mapsTo: string;
229
+ };
230
+ bottom: {
231
+ title: string;
232
+ mapsTo: string;
233
+ correspondingDatasets: string[];
234
+ };
235
+ };
236
+ comboChartTypes: {
237
+ type: string;
238
+ correspondingDatasets: string[];
239
+ }[];
240
+ };
241
+ export declare const comboAreaLineData: ({
242
+ group: string;
243
+ key: string;
244
+ value: number;
245
+ temp?: undefined;
246
+ } | {
247
+ group: string;
248
+ key: string;
249
+ temp: number;
250
+ value?: undefined;
251
+ })[];
252
+ export declare const comboAreaLineOptions: {
253
+ title: string;
254
+ points: {
255
+ enabled: boolean;
256
+ };
257
+ axes: {
258
+ left: {
259
+ title: string;
260
+ mapsTo: string;
261
+ };
262
+ bottom: {
263
+ scaleType: string;
264
+ mapsTo: string;
265
+ };
266
+ right: {
267
+ title: string;
268
+ mapsTo: string;
269
+ correspondingDatasets: string[];
270
+ };
271
+ };
272
+ comboChartTypes: ({
273
+ type: string;
274
+ options: {
275
+ points?: undefined;
276
+ };
277
+ correspondingDatasets: string[];
278
+ } | {
279
+ type: string;
280
+ options: {
281
+ points: {
282
+ enabled: boolean;
283
+ };
284
+ };
285
+ correspondingDatasets: string[];
286
+ })[];
287
+ curve: string;
288
+ };
289
+ export declare const comboLineScatterData: ({
290
+ group: string;
291
+ key: string;
292
+ temp: number;
293
+ value?: undefined;
294
+ } | {
295
+ group: string;
296
+ key: string;
297
+ value: number;
298
+ temp?: undefined;
299
+ })[];
300
+ export declare const comboLineScatterOptions: {
301
+ title: string;
302
+ axes: {
303
+ left: {
304
+ mapsTo: string;
305
+ title: string;
306
+ };
307
+ bottom: {
308
+ scaleType: string;
309
+ mapsTo: string;
310
+ };
311
+ right: {
312
+ title: string;
313
+ mapsTo: string;
314
+ scaleType: string;
315
+ correspondingDatasets: string[];
316
+ };
317
+ };
318
+ curve: string;
319
+ comboChartTypes: {
320
+ type: string;
321
+ correspondingDatasets: string[];
322
+ }[];
323
+ };
324
+ export declare const comboEmptyData: any[];
325
+ export declare const comboEmptyOptions: {
326
+ title: string;
327
+ axes: {
328
+ left: {
329
+ mapsTo: string;
330
+ title: string;
331
+ };
332
+ bottom: {
333
+ scaleType: string;
334
+ mapsTo: string;
335
+ };
336
+ right: {
337
+ title: string;
338
+ mapsTo: string;
339
+ scaleType: string;
340
+ correspondingDatasets: string[];
341
+ };
342
+ };
343
+ comboChartTypes: {
344
+ type: string;
345
+ correspondingDatasets: string[];
346
+ }[];
347
+ };
348
+ export declare const comboLoadingData: ({
349
+ group: string;
350
+ key: string;
351
+ temp: number;
352
+ value?: undefined;
353
+ } | {
354
+ group: string;
355
+ key: string;
356
+ value: number;
357
+ temp?: undefined;
358
+ })[];
359
+ export declare const comboLoadingOptions: {
360
+ title: string;
361
+ axes: {
362
+ left: {
363
+ mapsTo: string;
364
+ title: string;
365
+ };
366
+ bottom: {
367
+ scaleType: string;
368
+ mapsTo: string;
369
+ };
370
+ right: {
371
+ title: string;
372
+ mapsTo: string;
373
+ scaleType: string;
374
+ correspondingDatasets: string[];
375
+ };
376
+ };
377
+ data: {
378
+ loading: boolean;
379
+ };
380
+ comboChartTypes: {
381
+ type: string;
382
+ correspondingDatasets: string[];
383
+ }[];
384
+ };
385
+ export declare const comboStackedAreaLine: ({
386
+ group: string;
387
+ date: Date;
388
+ value: number;
389
+ temp?: undefined;
390
+ } | {
391
+ group: string;
392
+ date: Date;
393
+ temp: number;
394
+ value?: undefined;
395
+ })[];
396
+ export declare const comboStackedAreaLineOptions: {
397
+ title: string;
398
+ axes: {
399
+ left: {
400
+ title: string;
401
+ stacked: boolean;
402
+ mapsTo: string;
403
+ titleOrientation: string;
404
+ };
405
+ bottom: {
406
+ scaleType: string;
407
+ mapsTo: string;
408
+ };
409
+ right: {
410
+ title: string;
411
+ scaleType: string;
412
+ mapsTo: string;
413
+ correspondingDatasets: string[];
414
+ titleOrientation: string;
415
+ };
416
+ };
417
+ curve: string;
418
+ comboChartTypes: ({
419
+ type: string;
420
+ options: {
421
+ points: {
422
+ enabled: boolean;
423
+ };
424
+ };
425
+ correspondingDatasets: string[];
426
+ } | {
427
+ type: string;
428
+ correspondingDatasets: string[];
429
+ options?: undefined;
430
+ })[];
431
+ };
432
+ export declare const comboAreaLineTimeSeriesData: ({
433
+ group: string;
434
+ key: Date;
435
+ value: number;
436
+ temp?: undefined;
437
+ } | {
438
+ group: string;
439
+ key: Date;
440
+ temp: number;
441
+ value?: undefined;
442
+ })[];
443
+ export declare const comboAreaLineTimeSeriesOptions: {
444
+ title: string;
445
+ points: {
446
+ enabled: boolean;
447
+ };
448
+ axes: {
449
+ left: {
450
+ title: string;
451
+ mapsTo: string;
452
+ };
453
+ bottom: {
454
+ scaleType: string;
455
+ mapsTo: string;
456
+ };
457
+ right: {
458
+ title: string;
459
+ mapsTo: string;
460
+ correspondingDatasets: string[];
461
+ };
462
+ };
463
+ comboChartTypes: ({
464
+ type: string;
465
+ options: {
466
+ points?: undefined;
467
+ };
468
+ correspondingDatasets: string[];
469
+ } | {
470
+ type: string;
471
+ options: {
472
+ points: {
473
+ enabled: boolean;
474
+ };
475
+ };
476
+ correspondingDatasets: string[];
477
+ })[];
478
+ curve: string;
479
+ timeScale: {
480
+ addSpaceOnEdges: number;
481
+ };
482
+ };