@mescius/wijmo.react.chart.analytics 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,406 @@
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.analytics}
15
+ * Contains React components for the <b>wijmo.chart.analytics</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.analytics.TrendLine} class.
24
+ *
25
+ * The <b>flex-chart-trend-line</b> component should be contained in
26
+ * one of the following components:
27
+ * {@link wijmo.react.chart.FlexChart}
28
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
29
+ *
30
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.TrendLine} class it represents.
31
+ *
32
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
33
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
34
+ * The signature of the handler function is the same as any other Wijmo event handlers.
35
+ */
36
+ export declare class FlexChartTrendLine extends ComponentBase {
37
+ props: {
38
+ template?: any;
39
+ children?: any;
40
+ axisX?: any;
41
+ axisY?: any;
42
+ binding?: any;
43
+ bindingX?: any;
44
+ cssClass?: any;
45
+ name?: any;
46
+ style?: any;
47
+ altStyle?: any;
48
+ symbolMarker?: any;
49
+ symbolSize?: any;
50
+ symbolStyle?: any;
51
+ visibility?: any;
52
+ itemsSource?: any;
53
+ interpolateNulls?: any;
54
+ tooltipContent?: any;
55
+ itemFormatter?: any;
56
+ sampleCount?: any;
57
+ order?: any;
58
+ fitType?: any;
59
+ initialized?: any;
60
+ rendering?: any;
61
+ rendered?: any;
62
+ [key: string]: any;
63
+ };
64
+ _parentProp: string;
65
+ _siblingId: string;
66
+ constructor(props: any);
67
+ }
68
+ /**
69
+ * React component for the {@link wijmo.chart.analytics.MovingAverage} class.
70
+ *
71
+ * The <b>flex-chart-moving-average</b> component should be contained in
72
+ * one of the following components:
73
+ * {@link wijmo.react.chart.FlexChart}
74
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
75
+ *
76
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.MovingAverage} class it represents.
77
+ *
78
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
79
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
80
+ * The signature of the handler function is the same as any other Wijmo event handlers.
81
+ */
82
+ export declare class FlexChartMovingAverage extends ComponentBase {
83
+ props: {
84
+ template?: any;
85
+ children?: any;
86
+ axisX?: any;
87
+ axisY?: any;
88
+ binding?: any;
89
+ bindingX?: any;
90
+ cssClass?: any;
91
+ name?: any;
92
+ style?: any;
93
+ altStyle?: any;
94
+ symbolMarker?: any;
95
+ symbolSize?: any;
96
+ symbolStyle?: any;
97
+ visibility?: any;
98
+ itemsSource?: any;
99
+ interpolateNulls?: any;
100
+ tooltipContent?: any;
101
+ itemFormatter?: any;
102
+ sampleCount?: any;
103
+ period?: any;
104
+ type?: any;
105
+ initialized?: any;
106
+ rendering?: any;
107
+ rendered?: any;
108
+ [key: string]: any;
109
+ };
110
+ _parentProp: string;
111
+ _siblingId: string;
112
+ constructor(props: any);
113
+ }
114
+ /**
115
+ * React component for the {@link wijmo.chart.analytics.YFunctionSeries} class.
116
+ *
117
+ * The <b>flex-chart-y-function-series</b> component should be contained in
118
+ * one of the following components:
119
+ * {@link wijmo.react.chart.FlexChart}
120
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
121
+ *
122
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.YFunctionSeries} class it represents.
123
+ *
124
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
125
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
126
+ * The signature of the handler function is the same as any other Wijmo event handlers.
127
+ */
128
+ export declare class FlexChartYFunctionSeries extends ComponentBase {
129
+ props: {
130
+ template?: any;
131
+ children?: any;
132
+ axisX?: any;
133
+ axisY?: any;
134
+ binding?: any;
135
+ bindingX?: any;
136
+ cssClass?: any;
137
+ name?: any;
138
+ style?: any;
139
+ altStyle?: any;
140
+ symbolMarker?: any;
141
+ symbolSize?: any;
142
+ symbolStyle?: any;
143
+ visibility?: any;
144
+ itemsSource?: any;
145
+ interpolateNulls?: any;
146
+ tooltipContent?: any;
147
+ itemFormatter?: any;
148
+ sampleCount?: any;
149
+ min?: any;
150
+ max?: any;
151
+ func?: any;
152
+ initialized?: any;
153
+ rendering?: any;
154
+ rendered?: any;
155
+ [key: string]: any;
156
+ };
157
+ _parentProp: string;
158
+ _siblingId: string;
159
+ constructor(props: any);
160
+ }
161
+ /**
162
+ * React component for the {@link wijmo.chart.analytics.ParametricFunctionSeries} class.
163
+ *
164
+ * The <b>flex-chart-parametric-function-series</b> component should be contained in
165
+ * one of the following components:
166
+ * {@link wijmo.react.chart.FlexChart}
167
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
168
+ *
169
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.ParametricFunctionSeries} class it represents.
170
+ *
171
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
172
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
173
+ * The signature of the handler function is the same as any other Wijmo event handlers.
174
+ */
175
+ export declare class FlexChartParametricFunctionSeries extends ComponentBase {
176
+ props: {
177
+ template?: any;
178
+ children?: any;
179
+ axisX?: any;
180
+ axisY?: any;
181
+ binding?: any;
182
+ bindingX?: any;
183
+ cssClass?: any;
184
+ name?: any;
185
+ style?: any;
186
+ altStyle?: any;
187
+ symbolMarker?: any;
188
+ symbolSize?: any;
189
+ symbolStyle?: any;
190
+ visibility?: any;
191
+ itemsSource?: any;
192
+ interpolateNulls?: any;
193
+ tooltipContent?: any;
194
+ itemFormatter?: any;
195
+ sampleCount?: any;
196
+ min?: any;
197
+ max?: any;
198
+ func?: any;
199
+ xFunc?: any;
200
+ yFunc?: any;
201
+ initialized?: any;
202
+ rendering?: any;
203
+ rendered?: any;
204
+ [key: string]: any;
205
+ };
206
+ _parentProp: string;
207
+ _siblingId: string;
208
+ constructor(props: any);
209
+ }
210
+ /**
211
+ * React component for the {@link wijmo.chart.analytics.Waterfall} class.
212
+ *
213
+ * The <b>flex-chart-waterfall</b> component should be contained in
214
+ * one of the following components:
215
+ * {@link wijmo.react.chart.FlexChart}
216
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
217
+ *
218
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.Waterfall} class it represents.
219
+ *
220
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
221
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
222
+ * The signature of the handler function is the same as any other Wijmo event handlers.
223
+ */
224
+ export declare class FlexChartWaterfall extends ComponentBase {
225
+ props: {
226
+ template?: any;
227
+ children?: any;
228
+ axisX?: any;
229
+ axisY?: any;
230
+ binding?: any;
231
+ bindingX?: any;
232
+ cssClass?: any;
233
+ name?: any;
234
+ style?: any;
235
+ altStyle?: any;
236
+ symbolMarker?: any;
237
+ symbolSize?: any;
238
+ symbolStyle?: any;
239
+ visibility?: any;
240
+ itemsSource?: any;
241
+ interpolateNulls?: any;
242
+ tooltipContent?: any;
243
+ itemFormatter?: any;
244
+ relativeData?: any;
245
+ start?: any;
246
+ startLabel?: any;
247
+ showTotal?: any;
248
+ totalLabel?: any;
249
+ showIntermediateTotal?: any;
250
+ intermediateTotalPositions?: any;
251
+ intermediateTotalLabels?: any;
252
+ connectorLines?: any;
253
+ styles?: any;
254
+ initialized?: any;
255
+ rendering?: any;
256
+ rendered?: any;
257
+ [key: string]: any;
258
+ };
259
+ _parentProp: string;
260
+ _siblingId: string;
261
+ constructor(props: any);
262
+ }
263
+ /**
264
+ * React component for the {@link wijmo.chart.analytics.BoxWhisker} class.
265
+ *
266
+ * The <b>flex-chart-box-whisker</b> component should be contained in
267
+ * one of the following components:
268
+ * {@link wijmo.react.chart.FlexChart}
269
+ * or {@link wijmo.react.chart.finance.FinancialChart}.
270
+ *
271
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.BoxWhisker} class it represents.
272
+ *
273
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
274
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
275
+ * The signature of the handler function is the same as any other Wijmo event handlers.
276
+ */
277
+ export declare class FlexChartBoxWhisker extends ComponentBase {
278
+ props: {
279
+ template?: any;
280
+ children?: any;
281
+ axisX?: any;
282
+ axisY?: any;
283
+ binding?: any;
284
+ bindingX?: any;
285
+ cssClass?: any;
286
+ name?: any;
287
+ style?: any;
288
+ altStyle?: any;
289
+ symbolMarker?: any;
290
+ symbolSize?: any;
291
+ symbolStyle?: any;
292
+ visibility?: any;
293
+ itemsSource?: any;
294
+ interpolateNulls?: any;
295
+ tooltipContent?: any;
296
+ itemFormatter?: any;
297
+ quartileCalculation?: any;
298
+ groupWidth?: any;
299
+ gapWidth?: any;
300
+ showMeanLine?: any;
301
+ meanLineStyle?: any;
302
+ showMeanMarker?: any;
303
+ meanMarkerStyle?: any;
304
+ showInnerPoints?: any;
305
+ showOutliers?: any;
306
+ initialized?: any;
307
+ rendering?: any;
308
+ rendered?: any;
309
+ [key: string]: any;
310
+ };
311
+ _parentProp: string;
312
+ _siblingId: string;
313
+ constructor(props: any);
314
+ }
315
+ /**
316
+ * React component for the {@link wijmo.chart.analytics.ErrorBar} class.
317
+ *
318
+ * The <b>flex-chart-error-bar</b> component should be contained in
319
+ * a {@link wijmo.react.chart.FlexChart} component.
320
+ *
321
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.ErrorBar} class it represents.
322
+ *
323
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
324
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
325
+ * The signature of the handler function is the same as any other Wijmo event handlers.
326
+ */
327
+ export declare class FlexChartErrorBar extends ComponentBase {
328
+ props: {
329
+ template?: any;
330
+ children?: any;
331
+ axisX?: any;
332
+ axisY?: any;
333
+ binding?: any;
334
+ bindingX?: any;
335
+ cssClass?: any;
336
+ name?: any;
337
+ style?: any;
338
+ altStyle?: any;
339
+ symbolMarker?: any;
340
+ symbolSize?: any;
341
+ symbolStyle?: any;
342
+ visibility?: any;
343
+ itemsSource?: any;
344
+ interpolateNulls?: any;
345
+ tooltipContent?: any;
346
+ itemFormatter?: any;
347
+ chartType?: any;
348
+ errorBarStyle?: any;
349
+ value?: any;
350
+ errorAmount?: any;
351
+ endStyle?: any;
352
+ direction?: any;
353
+ initialized?: any;
354
+ rendering?: any;
355
+ rendered?: any;
356
+ [key: string]: any;
357
+ };
358
+ _parentProp: string;
359
+ _siblingId: string;
360
+ constructor(props: any);
361
+ }
362
+ /**
363
+ * React component for the {@link wijmo.chart.analytics.BreakEven} class.
364
+ *
365
+ * The <b>flex-chart-break-even</b> component should be contained in
366
+ * a {@link wijmo.react.chart.FlexChart} component.
367
+ *
368
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.analytics.BreakEven} class it represents.
369
+ *
370
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
371
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
372
+ * The signature of the handler function is the same as any other Wijmo event handlers.
373
+ */
374
+ export declare class FlexChartBreakEven extends ComponentBase {
375
+ props: {
376
+ template?: any;
377
+ children?: any;
378
+ axisX?: any;
379
+ axisY?: any;
380
+ binding?: any;
381
+ bindingX?: any;
382
+ cssClass?: any;
383
+ name?: any;
384
+ style?: any;
385
+ altStyle?: any;
386
+ symbolMarker?: any;
387
+ symbolSize?: any;
388
+ symbolStyle?: any;
389
+ visibility?: any;
390
+ itemsSource?: any;
391
+ interpolateNulls?: any;
392
+ tooltipContent?: any;
393
+ itemFormatter?: any;
394
+ fixedCost?: any;
395
+ variableCost?: any;
396
+ salesPrice?: any;
397
+ styles?: any;
398
+ initialized?: any;
399
+ rendering?: any;
400
+ rendered?: any;
401
+ [key: string]: any;
402
+ };
403
+ _parentProp: string;
404
+ _siblingId: string;
405
+ constructor(props: any);
406
+ }
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(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)};return function(e,t){extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}}(),__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);t.default=e;return t};Object.defineProperty(exports,"__esModule",{value:!0});var wijmo_react_base_1=require("@mescius/wijmo.react.base"),wjcChartAnalytics=__importStar(require("@mescius/wijmo.chart.analytics")),FlexChartTrendLine=function(e){__extends(FlexChartTrendLine,e);function FlexChartTrendLine(t){var r=e.call(this,t,wjcChartAnalytics.TrendLine,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartTrendLine}(wijmo_react_base_1.ComponentBase);exports.FlexChartTrendLine=FlexChartTrendLine;var FlexChartMovingAverage=function(e){__extends(FlexChartMovingAverage,e);function FlexChartMovingAverage(t){var r=e.call(this,t,wjcChartAnalytics.MovingAverage,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartMovingAverage}(wijmo_react_base_1.ComponentBase);exports.FlexChartMovingAverage=FlexChartMovingAverage;var FlexChartYFunctionSeries=function(e){__extends(FlexChartYFunctionSeries,e);function FlexChartYFunctionSeries(t){var r=e.call(this,t,wjcChartAnalytics.YFunctionSeries,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartYFunctionSeries}(wijmo_react_base_1.ComponentBase);exports.FlexChartYFunctionSeries=FlexChartYFunctionSeries;var FlexChartParametricFunctionSeries=function(e){__extends(FlexChartParametricFunctionSeries,e);function FlexChartParametricFunctionSeries(t){var r=e.call(this,t,wjcChartAnalytics.ParametricFunctionSeries,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartParametricFunctionSeries}(wijmo_react_base_1.ComponentBase);exports.FlexChartParametricFunctionSeries=FlexChartParametricFunctionSeries;var FlexChartWaterfall=function(e){__extends(FlexChartWaterfall,e);function FlexChartWaterfall(t){var r=e.call(this,t,wjcChartAnalytics.Waterfall,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent","intermediateTotalPositions","intermediateTotalLabels","styles"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartWaterfall}(wijmo_react_base_1.ComponentBase);exports.FlexChartWaterfall=FlexChartWaterfall;var FlexChartBoxWhisker=function(e){__extends(FlexChartBoxWhisker,e);function FlexChartBoxWhisker(t){var r=e.call(this,t,wjcChartAnalytics.BoxWhisker,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent","meanLineStyle","meanMarkerStyle"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartBoxWhisker}(wijmo_react_base_1.ComponentBase);exports.FlexChartBoxWhisker=FlexChartBoxWhisker;var FlexChartErrorBar=function(e){__extends(FlexChartErrorBar,e);function FlexChartErrorBar(t){var r=e.call(this,t,wjcChartAnalytics.ErrorBar,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent","errorBarStyle","value"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartErrorBar}(wijmo_react_base_1.ComponentBase);exports.FlexChartErrorBar=FlexChartErrorBar;var FlexChartBreakEven=function(e){__extends(FlexChartBreakEven,e);function FlexChartBreakEven(t){var r=e.call(this,t,wjcChartAnalytics.BreakEven,{objectProps:["axisX","axisY","style","altStyle","symbolStyle","itemsSource","tooltipContent","styles"]})||this;r._parentProp="series";r._siblingId="series";return r}return FlexChartBreakEven}(wijmo_react_base_1.ComponentBase);exports.FlexChartBreakEven=FlexChartBreakEven;
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@mescius/wijmo.react.chart.analytics",
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.analytics": "5.20232.939"
12
+ },
13
+ "homepage": "https://developer.mescius.com/wijmo",
14
+ "bugs": {
15
+ "url": "https://developer.mescius.com/forums/wijmo"
16
+ },
17
+ "keywords": [
18
+ "control",
19
+ "component",
20
+ "ui",
21
+ "control library",
22
+ "component library",
23
+ "ui library",
24
+ "control-library",
25
+ "component-library",
26
+ "ui-library",
27
+ "grid",
28
+ "data grid",
29
+ "data-grid",
30
+ "datagrid",
31
+ "angular grid",
32
+ "react grid",
33
+ "vue grid",
34
+ "angular-grid",
35
+ "react-grid",
36
+ "vue-grid"
37
+ ],
38
+ "module": "./es5-esm.js",
39
+ "esm5": "./es5-esm.js",
40
+ "wj-esm5": "./es5-esm.js",
41
+ "es2015Cjs": "./es2015-commonjs.js",
42
+ "wj-es2015Cjs": "./es2015-commonjs.js",
43
+ "esm2015": "./es2015-esm.js",
44
+ "wj-esm2015": "./es2015-esm.js"
45
+ }