@mescius/wijmo.react.chart 5.20232.939

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.
package/index.d.ts ADDED
@@ -0,0 +1,471 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.react.chart}
15
+ * Contains React components for the <b>wijmo.chart</b> module.
16
+ */
17
+ /**
18
+ *
19
+ */
20
+ export declare var ___keepComment: any;
21
+ import { ComponentBase } from '@grapecity/wijmo.react.base';
22
+ /**
23
+ * React component for the {@link wijmo.chart.FlexChart} control.
24
+ *
25
+ * The <b>flex-chart</b> component may contain
26
+ * the following child components:
27
+ * {@link wijmo.react.chart.analytics.FlexChartTrendLine}
28
+ * , {@link wijmo.react.chart.analytics.FlexChartMovingAverage}
29
+ * , {@link wijmo.react.chart.analytics.FlexChartYFunctionSeries}
30
+ * , {@link wijmo.react.chart.analytics.FlexChartParametricFunctionSeries}
31
+ * , {@link wijmo.react.chart.analytics.FlexChartWaterfall}
32
+ * , {@link wijmo.react.chart.analytics.FlexChartBoxWhisker}
33
+ * , {@link wijmo.react.chart.analytics.FlexChartErrorBar}
34
+ * , {@link wijmo.react.chart.analytics.FlexChartBreakEven}
35
+ * , {@link wijmo.react.chart.animation.FlexChartAnimation}
36
+ * , {@link wijmo.react.chart.annotation.FlexChartAnnotationLayer}
37
+ * , {@link wijmo.react.chart.interaction.FlexChartRangeSelector}
38
+ * , {@link wijmo.react.chart.interaction.FlexChartGestures}
39
+ * , {@link wijmo.react.chart.FlexChartAxis}
40
+ * , {@link wijmo.react.chart.FlexChartLegend}
41
+ * , {@link wijmo.react.chart.FlexChartDataLabel}
42
+ * , {@link wijmo.react.chart.FlexChartSeries}
43
+ * , {@link wijmo.react.chart.FlexChartLineMarker}
44
+ * and {@link wijmo.react.chart.FlexChartPlotArea}.
45
+ *
46
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.FlexChart} control it represents.
47
+ *
48
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
49
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
50
+ * The signature of the handler function is the same as any other Wijmo event handlers.
51
+ *
52
+ * The example below shows how to instantiate and initialize a
53
+ * {@link wijmo.chart.FlexChart} control in JSX:
54
+ *
55
+ * <pre>&lt;Wj.FlexChart
56
+ * itemsSource={ this.state.data }
57
+ * bindingX="name"
58
+ * header={ this.state.header }
59
+ * footer={ this.state.footer }
60
+ * axisX={&#8203;{ title: this.state.titleX }}
61
+ * axisY={&#8203;{ title: this.state.titleY }}
62
+ * legend={&#8203;{ position: this.state.legendPosition }}
63
+ * series={[
64
+ * { name: 'Sales', binding: 'sales' },
65
+ * { name: 'Expenses', binding: 'expenses' },
66
+ * { name: 'Downloads', binding: 'downloads', chartType: 'LineSymbols' }
67
+ * ]} /&gt;</pre>
68
+ *
69
+
70
+ * The code sets the <b>itemsSource</b> property to a collection that contains
71
+ * the data to chart and the <b>bindingX</b> property to specify the name of the
72
+ * data property to use for the chart's X values.
73
+ *
74
+ * It sets the <b>header</b> and <b>footer</b> properties to specify the
75
+ * chart titles, and customizes the chart's axes and legend.
76
+ *
77
+ * Finally, it sets the <b>series</b> property to an array that specifies the
78
+ * data items that the chart should display.
79
+ */
80
+ export declare class FlexChart extends ComponentBase {
81
+ props: {
82
+ template?: any;
83
+ children?: any;
84
+ renderEngine?: any;
85
+ isDisabled?: any;
86
+ tabOrder?: any;
87
+ binding?: any;
88
+ footer?: any;
89
+ header?: any;
90
+ selectionMode?: any;
91
+ palette?: any;
92
+ plotMargin?: any;
93
+ footerStyle?: any;
94
+ headerStyle?: any;
95
+ tooltipContent?: any;
96
+ itemsSource?: any;
97
+ bindingX?: any;
98
+ interpolateNulls?: any;
99
+ legendToggle?: any;
100
+ symbolSize?: any;
101
+ options?: any;
102
+ selection?: any;
103
+ itemFormatter?: any;
104
+ labelContent?: any;
105
+ chartType?: any;
106
+ rotated?: any;
107
+ stacking?: any;
108
+ initialized?: any;
109
+ gotFocus?: any;
110
+ lostFocus?: any;
111
+ refreshing?: any;
112
+ refreshed?: any;
113
+ invalidInput?: any;
114
+ rendering?: any;
115
+ rendered?: any;
116
+ itemsSourceChanging?: any;
117
+ itemsSourceChanged?: any;
118
+ seriesVisibilityChanged?: any;
119
+ selectionChanged?: any;
120
+ [key: string]: any;
121
+ };
122
+ constructor(props: any);
123
+ componentDidMount(): any;
124
+ componentDidUpdate(prevProps: any): void;
125
+ private _setExtra;
126
+ }
127
+ /**
128
+ * React component for the {@link wijmo.chart.FlexPie} control.
129
+ *
130
+ * The <b>flex-pie</b> component may contain
131
+ * the following child components:
132
+ * {@link wijmo.react.chart.animation.FlexChartAnimation}
133
+ * , {@link wijmo.react.chart.FlexChartLegend}
134
+ * and {@link wijmo.react.chart.FlexPieDataLabel}.
135
+ *
136
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.FlexPie} control it represents.
137
+ *
138
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
139
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
140
+ * The signature of the handler function is the same as any other Wijmo event handlers.
141
+ */
142
+ export declare class FlexPie extends ComponentBase {
143
+ props: {
144
+ template?: any;
145
+ children?: any;
146
+ isDisabled?: any;
147
+ tabOrder?: any;
148
+ binding?: any;
149
+ footer?: any;
150
+ header?: any;
151
+ selectionMode?: any;
152
+ palette?: any;
153
+ plotMargin?: any;
154
+ footerStyle?: any;
155
+ headerStyle?: any;
156
+ tooltipContent?: any;
157
+ itemsSource?: any;
158
+ bindingName?: any;
159
+ innerRadius?: any;
160
+ isAnimated?: any;
161
+ offset?: any;
162
+ reversed?: any;
163
+ startAngle?: any;
164
+ selectedIndex?: any;
165
+ selectedItemPosition?: any;
166
+ selectedItemOffset?: any;
167
+ itemFormatter?: any;
168
+ labelContent?: any;
169
+ titles?: any;
170
+ chartsPerLine?: any;
171
+ innerText?: any;
172
+ innerTextStyle?: any;
173
+ initialized?: any;
174
+ gotFocus?: any;
175
+ lostFocus?: any;
176
+ refreshing?: any;
177
+ refreshed?: any;
178
+ invalidInput?: any;
179
+ rendering?: any;
180
+ rendered?: any;
181
+ selectionChanged?: any;
182
+ itemsSourceChanging?: any;
183
+ itemsSourceChanged?: any;
184
+ [key: string]: any;
185
+ };
186
+ constructor(props: any);
187
+ componentDidMount(): any;
188
+ componentDidUpdate(prevProps: any): void;
189
+ private _setExtra;
190
+ }
191
+ /**
192
+ * React component for the {@link wijmo.chart.Axis} class.
193
+ *
194
+ * The <b>flex-chart-axis</b> component should be contained in
195
+ * one of the following components:
196
+ * {@link wijmo.react.chart.FlexChart}
197
+ * , {@link wijmo.react.chart.FlexChartSeries}
198
+ * , {@link wijmo.react.chart.finance.FinancialChart}
199
+ * or {@link wijmo.react.chart.finance.FinancialChartSeries}.
200
+ *
201
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.Axis} class it represents.
202
+ *
203
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
204
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
205
+ * The signature of the handler function is the same as any other Wijmo event handlers.
206
+ */
207
+ export declare class FlexChartAxis extends ComponentBase {
208
+ props: {
209
+ template?: any;
210
+ children?: any;
211
+ axisLine?: any;
212
+ format?: any;
213
+ labels?: any;
214
+ majorGrid?: any;
215
+ majorTickMarks?: any;
216
+ majorUnit?: any;
217
+ max?: any;
218
+ min?: any;
219
+ position?: any;
220
+ reversed?: any;
221
+ title?: any;
222
+ labelAngle?: any;
223
+ minorGrid?: any;
224
+ minorTickMarks?: any;
225
+ minorUnit?: any;
226
+ origin?: any;
227
+ logBase?: any;
228
+ plotArea?: any;
229
+ labelAlign?: any;
230
+ name?: any;
231
+ overlappingLabels?: any;
232
+ labelPadding?: any;
233
+ itemFormatter?: any;
234
+ itemsSource?: any;
235
+ binding?: any;
236
+ labelMin?: any;
237
+ labelMax?: any;
238
+ groupsOptions?: any;
239
+ initialized?: any;
240
+ rangeChanged?: any;
241
+ [key: string]: any;
242
+ };
243
+ _parentProp: string;
244
+ constructor(props: any);
245
+ }
246
+ /**
247
+ * React component for the {@link wijmo.chart.Legend} class.
248
+ *
249
+ * The <b>flex-chart-legend</b> component should be contained in
250
+ * one of the following components:
251
+ * {@link wijmo.react.chart.FlexChart}
252
+ * , {@link wijmo.react.chart.FlexPie}
253
+ * , {@link wijmo.react.chart.finance.FinancialChart}
254
+ * , {@link wijmo.react.chart.radar.FlexRadar}
255
+ * , {@link wijmo.react.chart.hierarchical.Sunburst}
256
+ * or {@link wijmo.react.chart.map.FlexMap}.
257
+ *
258
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.Legend} class it represents.
259
+ *
260
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
261
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
262
+ * The signature of the handler function is the same as any other Wijmo event handlers.
263
+ */
264
+ export declare class FlexChartLegend extends ComponentBase {
265
+ props: {
266
+ template?: any;
267
+ children?: any;
268
+ orientation?: any;
269
+ position?: any;
270
+ title?: any;
271
+ titleAlign?: any;
272
+ maxSize?: any;
273
+ scrollbar?: any;
274
+ initialized?: any;
275
+ [key: string]: any;
276
+ };
277
+ _parentProp: string;
278
+ _parentInCtor: boolean;
279
+ constructor(props: any);
280
+ }
281
+ /**
282
+ * React component for the {@link wijmo.chart.DataLabel} class.
283
+ *
284
+ * The <b>flex-chart-data-label</b> component should be contained in
285
+ * a {@link wijmo.react.chart.FlexChart} component.
286
+ *
287
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.DataLabel} class it represents.
288
+ *
289
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
290
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
291
+ * The signature of the handler function is the same as any other Wijmo event handlers.
292
+ */
293
+ export declare class FlexChartDataLabel extends ComponentBase {
294
+ props: {
295
+ template?: any;
296
+ children?: any;
297
+ content?: any;
298
+ border?: any;
299
+ offset?: any;
300
+ connectingLine?: any;
301
+ position?: any;
302
+ initialized?: any;
303
+ rendering?: any;
304
+ [key: string]: any;
305
+ };
306
+ _parentProp: string;
307
+ constructor(props: any);
308
+ }
309
+ /**
310
+ * React component for the {@link wijmo.chart.PieDataLabel} class.
311
+ *
312
+ * The <b>flex-pie-data-label</b> component should be contained in
313
+ * a {@link wijmo.react.chart.FlexPie} component.
314
+ *
315
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.PieDataLabel} class it represents.
316
+ *
317
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
318
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
319
+ * The signature of the handler function is the same as any other Wijmo event handlers.
320
+ */
321
+ export declare class FlexPieDataLabel extends ComponentBase {
322
+ props: {
323
+ template?: any;
324
+ children?: any;
325
+ content?: any;
326
+ border?: any;
327
+ offset?: any;
328
+ connectingLine?: any;
329
+ position?: any;
330
+ initialized?: any;
331
+ rendering?: any;
332
+ [key: string]: any;
333
+ };
334
+ _parentProp: string;
335
+ constructor(props: any);
336
+ }
337
+ /**
338
+ * React component for the {@link wijmo.chart.Series} class.
339
+ *
340
+ * The <b>flex-chart-series</b> component should be contained in
341
+ * a {@link wijmo.react.chart.FlexChart} component.
342
+ *
343
+ * The <b>flex-chart-series</b> component may contain
344
+ * a {@link wijmo.react.chart.FlexChartAxis} child component.
345
+ *
346
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.Series} class it represents.
347
+ *
348
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
349
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
350
+ * The signature of the handler function is the same as any other Wijmo event handlers.
351
+ */
352
+ export declare class FlexChartSeries extends ComponentBase {
353
+ props: {
354
+ template?: any;
355
+ children?: any;
356
+ axisX?: any;
357
+ axisY?: any;
358
+ binding?: any;
359
+ bindingX?: any;
360
+ cssClass?: any;
361
+ name?: any;
362
+ style?: any;
363
+ altStyle?: any;
364
+ symbolMarker?: any;
365
+ symbolSize?: any;
366
+ symbolStyle?: any;
367
+ visibility?: any;
368
+ itemsSource?: any;
369
+ interpolateNulls?: any;
370
+ tooltipContent?: any;
371
+ itemFormatter?: any;
372
+ chartType?: any;
373
+ initialized?: any;
374
+ rendering?: any;
375
+ rendered?: any;
376
+ [key: string]: any;
377
+ };
378
+ _parentProp: string;
379
+ _siblingId: string;
380
+ constructor(props: any);
381
+ }
382
+ /**
383
+ * React component for the {@link wijmo.chart.LineMarker} class.
384
+ *
385
+ * The <b>flex-chart-line-marker</b> component should be contained in
386
+ * one of the following components:
387
+ * {@link wijmo.react.chart.FlexChart}
388
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
389
+ *
390
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.LineMarker} class it represents.
391
+ *
392
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
393
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
394
+ * The signature of the handler function is the same as any other Wijmo event handlers.
395
+ */
396
+ export declare class FlexChartLineMarker extends ComponentBase {
397
+ props: {
398
+ template?: any;
399
+ children?: any;
400
+ isVisible?: any;
401
+ seriesIndex?: any;
402
+ horizontalPosition?: any;
403
+ content?: any;
404
+ verticalPosition?: any;
405
+ alignment?: any;
406
+ lines?: any;
407
+ interaction?: any;
408
+ dragLines?: any;
409
+ dragThreshold?: any;
410
+ dragContent?: any;
411
+ initialized?: any;
412
+ positionChanged?: any;
413
+ [key: string]: any;
414
+ };
415
+ _parentInCtor: boolean;
416
+ constructor(props: any);
417
+ }
418
+ /**
419
+ * React component for the {@link wijmo.chart.DataPoint} class.
420
+ *
421
+ * The <b>flex-chart-data-point</b> component should be contained in
422
+ * a {@link wijmo.react.chart.annotation.FlexChartAnnotation} component.
423
+ *
424
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.DataPoint} class it represents.
425
+ *
426
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
427
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
428
+ * The signature of the handler function is the same as any other Wijmo event handlers.
429
+ */
430
+ export declare class FlexChartDataPoint extends ComponentBase {
431
+ props: {
432
+ template?: any;
433
+ children?: any;
434
+ x?: any;
435
+ y?: any;
436
+ initialized?: any;
437
+ [key: string]: any;
438
+ };
439
+ _parentProp: string;
440
+ constructor(props: any);
441
+ }
442
+ /**
443
+ * React component for the {@link wijmo.chart.PlotArea} class.
444
+ *
445
+ * The <b>flex-chart-plot-area</b> component should be contained in
446
+ * one of the following components:
447
+ * {@link wijmo.react.chart.FlexChart}
448
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
449
+ *
450
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.PlotArea} class it represents.
451
+ *
452
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
453
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
454
+ * The signature of the handler function is the same as any other Wijmo event handlers.
455
+ */
456
+ export declare class FlexChartPlotArea extends ComponentBase {
457
+ props: {
458
+ template?: any;
459
+ children?: any;
460
+ column?: any;
461
+ height?: any;
462
+ name?: any;
463
+ row?: any;
464
+ style?: any;
465
+ width?: any;
466
+ initialized?: any;
467
+ [key: string]: any;
468
+ };
469
+ _parentProp: string;
470
+ constructor(props: any);
471
+ }
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+
14
+ "use strict";var __extends=this&&this.__extends||function(){var extendStatics=function(t,e){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r])})(t,e)};return function(t,e){extendStatics(t,e);function __(){this.constructor=t}t.prototype=null===e?Object.create(e):(__.prototype=e.prototype,new __)}}(),__importStar=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var r in t)Object.hasOwnProperty.call(t,r)&&(e[r]=t[r]);e.default=t;return e};Object.defineProperty(exports,"__esModule",{value:!0});var wijmo_react_base_1=require("@mescius/wijmo.react.base"),wjcChart=__importStar(require("@mescius/wijmo.chart")),FlexChart=function(t){__extends(FlexChart,t);function FlexChart(e){return t.call(this,e,wjcChart.FlexChart,{objectProps:["palette","plotMargin","footerStyle","headerStyle","itemsSource","options","selection","renderEngine"]})||this}FlexChart.prototype.componentDidMount=function(){var e=t.prototype.componentDidMount.call(this);this._setExtra(this.props);return e};FlexChart.prototype.componentDidUpdate=function(e){t.prototype.componentDidUpdate.call(this,e);this._setExtra(this.props)};FlexChart.prototype._setExtra=function(t){"tooltipContent"in t&&(this.control.tooltip.content=t.tooltipContent);"labelContent"in t&&(this.control.dataLabel.content=t.labelContent)};return FlexChart}(wijmo_react_base_1.ComponentBase);exports.FlexChart=FlexChart;var FlexPie=function(t){__extends(FlexPie,t);function FlexPie(e){return t.call(this,e,wjcChart.FlexPie,{objectProps:["palette","plotMargin","footerStyle","headerStyle","itemsSource","titles","innerTextStyle"]})||this}FlexPie.prototype.componentDidMount=function(){var e=t.prototype.componentDidMount.call(this);this._setExtra(this.props);return e};FlexPie.prototype.componentDidUpdate=function(e){t.prototype.componentDidUpdate.call(this,e);this._setExtra(this.props)};FlexPie.prototype._setExtra=function(t){"tooltipContent"in t&&(this.control.tooltip.content=t.tooltipContent);"labelContent"in t&&(this.control.dataLabel.content=t.labelContent)};return FlexPie}(wijmo_react_base_1.ComponentBase);exports.FlexPie=FlexPie;var FlexChartAxis=function(t){__extends(FlexChartAxis,t);function FlexChartAxis(e){var r=t.call(this,e,wjcChart.Axis,{objectProps:["plotArea","itemsSource","groupsOptions"]})||this;r._parentProp="axes";return r}return FlexChartAxis}(wijmo_react_base_1.ComponentBase);exports.FlexChartAxis=FlexChartAxis;var FlexChartLegend=function(t){__extends(FlexChartLegend,t);function FlexChartLegend(e){var r=t.call(this,e,wjcChart.Legend)||this;r._parentProp="legend";r._parentInCtor=!0;return r}return FlexChartLegend}(wijmo_react_base_1.ComponentBase);exports.FlexChartLegend=FlexChartLegend;var FlexChartDataLabel=function(t){__extends(FlexChartDataLabel,t);function FlexChartDataLabel(e){var r=t.call(this,e,wjcChart.DataLabel,{objectProps:["content"]})||this;r._parentProp="dataLabel";return r}return FlexChartDataLabel}(wijmo_react_base_1.ComponentBase);exports.FlexChartDataLabel=FlexChartDataLabel;var FlexPieDataLabel=function(t){__extends(FlexPieDataLabel,t);function FlexPieDataLabel(e){var r=t.call(this,e,wjcChart.PieDataLabel,{objectProps:["content"]})||this;r._parentProp="dataLabel";return r}return FlexPieDataLabel}(wijmo_react_base_1.ComponentBase);exports.FlexPieDataLabel=FlexPieDataLabel;var FlexChartSeries=function(t){__extends(FlexChartSeries,t);function FlexChartSeries(e){var r=t.call(this,e,wjcChart.Series,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartSeries}(wijmo_react_base_1.ComponentBase);exports.FlexChartSeries=FlexChartSeries;var FlexChartLineMarker=function(t){__extends(FlexChartLineMarker,t);function FlexChartLineMarker(e){var r=t.call(this,e,wjcChart.LineMarker)||this;r._parentInCtor=!0;return r}return FlexChartLineMarker}(wijmo_react_base_1.ComponentBase);exports.FlexChartLineMarker=FlexChartLineMarker;var FlexChartDataPoint=function(t){__extends(FlexChartDataPoint,t);function FlexChartDataPoint(e){var r=t.call(this,e,wjcChart.DataPoint)||this;r._parentProp="";return r}return FlexChartDataPoint}(wijmo_react_base_1.ComponentBase);exports.FlexChartDataPoint=FlexChartDataPoint;var FlexChartPlotArea=function(t){__extends(FlexChartPlotArea,t);function FlexChartPlotArea(e){var r=t.call(this,e,wjcChart.PlotArea,{objectProps:["style"]})||this;r._parentProp="plotAreas";return r}return FlexChartPlotArea}(wijmo_react_base_1.ComponentBase);exports.FlexChartPlotArea=FlexChartPlotArea;
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@mescius/wijmo.react.chart",
3
+ "version": "5.20232.939",
4
+ "description": "UI library for pure JS, Angular, React, Vue and more...",
5
+ "author": "MESCIUS inc",
6
+ "license": "Commercial",
7
+ "main": "./index.js",
8
+ "types": "./index.d.ts",
9
+ "dependencies": {
10
+ "@mescius/wijmo": "5.20232.939",
11
+ "@mescius/wijmo.chart": "5.20232.939",
12
+ "@mescius/wijmo.react.base": "5.20232.939"
13
+ },
14
+ "homepage": "https://developer.mescius.com/wijmo",
15
+ "bugs": {
16
+ "url": "https://developer.mescius.com/forums/wijmo"
17
+ },
18
+ "keywords": [
19
+ "control",
20
+ "component",
21
+ "ui",
22
+ "control library",
23
+ "component library",
24
+ "ui library",
25
+ "control-library",
26
+ "component-library",
27
+ "ui-library",
28
+ "grid",
29
+ "data grid",
30
+ "data-grid",
31
+ "datagrid",
32
+ "angular grid",
33
+ "react grid",
34
+ "vue grid",
35
+ "angular-grid",
36
+ "react-grid",
37
+ "vue-grid"
38
+ ],
39
+ "module": "./es5-esm.js",
40
+ "esm5": "./es5-esm.js",
41
+ "wj-esm5": "./es5-esm.js",
42
+ "es2015Cjs": "./es2015-commonjs.js",
43
+ "wj-es2015Cjs": "./es2015-commonjs.js",
44
+ "esm2015": "./es2015-esm.js",
45
+ "wj-esm2015": "./es2015-esm.js"
46
+ }