@mescius/wijmo.angular.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/COMMERCIAL-LICENSE.html +485 -0
- package/README.md +363 -0
- package/es2015-commonjs.js +14 -0
- package/es2015-esm.js +14 -0
- package/es5-esm.js +14 -0
- package/index.d.ts +301 -0
- package/index.js +14 -0
- package/package.json +47 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,301 @@
|
|
|
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.angular.chart.analytics}
|
|
15
|
+
* AngularJS directives for wijmo.angular.chart.analytics module
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export declare var ___keepComment: any;
|
|
21
|
+
import { WjSeriesBase, WjFlexChartSeries } from '@grapecity/wijmo.angular.chart';
|
|
22
|
+
/**
|
|
23
|
+
* Angular module name, which can be used in the <b>angular.module(moduleName)</b>
|
|
24
|
+
* function to obtain a reference to the module .
|
|
25
|
+
*/
|
|
26
|
+
export declare const ngModuleName = "wj.chart.analytics";
|
|
27
|
+
export declare class WjTrendLineBase extends WjSeriesBase {
|
|
28
|
+
constructor();
|
|
29
|
+
readonly _controlConstructor: any;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* AngularJS directive for the {@link FlexChart} and {@link FinancialChart} {@link TrendLine} object.
|
|
33
|
+
*
|
|
34
|
+
* The <b>wj-flex-chart-trend-line</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} or {@link wijmo.angular.chart.finance.WjFinancialChart} directive.
|
|
35
|
+
* It supports the following attributes:
|
|
36
|
+
*
|
|
37
|
+
* <dl class="dl-horizontal">
|
|
38
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
39
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
40
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
41
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
42
|
+
* <dt>chart-type</dt> <dd><code>@</code> The chart type to use in rendering objects for this series
|
|
43
|
+
* objects. This value overrides the default chart type set on the chart. See
|
|
44
|
+
* {@link ChartType}.</dd>
|
|
45
|
+
* <dt>css-class</dt> <dd><code>@</code> The CSS class to use for the series.</dd>
|
|
46
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
47
|
+
* data for this series.</dd>
|
|
48
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
49
|
+
* <dt>style</dt> <dd><code>=</code> The series style. Use ng-attr-style to specify the series
|
|
50
|
+
* style object as an object. See the section on ngAttr attribute bindings in
|
|
51
|
+
* <a target="_blank" href="https://docs.angularjs.org/guide/directive">
|
|
52
|
+
* AngularJS Creating Custom Directives</a> and the <a target="_blank" href=
|
|
53
|
+
* "https://demos.wijmo.com/5/Angular/FlexChartIntro/FlexChartIntro/#Styling">
|
|
54
|
+
* FlexChart 101 Styling Series</a> sample for more information.</dd>
|
|
55
|
+
* <dt>symbol-marker</dt><dd><code>@</code> The shape of marker to use for the series. This value
|
|
56
|
+
* overrides the default marker set on the chart. See {@link Marker}.</dd>
|
|
57
|
+
* <dt>symbol-size</dt> <dd><code>@</code> The size of the symbols used to render data
|
|
58
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts, in pixels.
|
|
59
|
+
* This value overrides any setting at the chart level.</dd>
|
|
60
|
+
* <dt>symbol-style</dt> <dd><code>=</code> The style of the symbols used to render data
|
|
61
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts.
|
|
62
|
+
* This value overrides any setting at the chart level.</dd>
|
|
63
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
64
|
+
* display the series.</dd>
|
|
65
|
+
* <dt>sample-count</dt> <dd><code>@</code> The sample count for the calculation.</dd>
|
|
66
|
+
* <dt>fit-type</dt> <dd><code>@</code> The {@link TrendLineFitType} value for the trend line.</dd>
|
|
67
|
+
* <dt>order</dt> <dd><code>@</code> The number of terms in a polynomial or fourier equation.</dd>
|
|
68
|
+
* </dl>
|
|
69
|
+
*
|
|
70
|
+
*/
|
|
71
|
+
export declare class WjFlexChartTrendLine extends WjTrendLineBase {
|
|
72
|
+
constructor();
|
|
73
|
+
readonly _controlConstructor: any;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* AngularJS directive for the {@link FlexChart} and {@link FinancialChart} {@link MovingAverage} object.
|
|
77
|
+
*
|
|
78
|
+
* The <b>wj-flex-chart-moving-average</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} or {@link wijmo.angular.chart.finance.WjFinancialChart} directive.
|
|
79
|
+
* It supports the following attributes:
|
|
80
|
+
*
|
|
81
|
+
* <dl class="dl-horizontal">
|
|
82
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
83
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
84
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
85
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
86
|
+
* <dt>chart-type</dt> <dd><code>@</code> The chart type to use in rendering objects for this series
|
|
87
|
+
* objects. This value overrides the default chart type set on the chart. See
|
|
88
|
+
* {@link ChartType}.</dd>
|
|
89
|
+
* <dt>css-class</dt> <dd><code>@</code> The CSS class to use for the series.</dd>
|
|
90
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
91
|
+
* data for this series.</dd>
|
|
92
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
93
|
+
* <dt>style</dt> <dd><code>=</code> The series style. Use ng-attr-style to specify the series
|
|
94
|
+
* style object as an object. See the section on ngAttr attribute bindings in
|
|
95
|
+
* <a target="_blank" href="https://docs.angularjs.org/guide/directive">
|
|
96
|
+
* AngularJS Creating Custom Directives</a> and the <a target="_blank" href=
|
|
97
|
+
* "https://demos.wijmo.com/5/Angular/FlexChartIntro/FlexChartIntro/#Styling">
|
|
98
|
+
* FlexChart 101 Styling Series</a> sample for more information.</dd>
|
|
99
|
+
* <dt>symbol-marker</dt><dd><code>@</code> The shape of marker to use for the series. This value
|
|
100
|
+
* overrides the default marker set on the chart. See {@link Marker}.</dd>
|
|
101
|
+
* <dt>symbol-size</dt> <dd><code>@</code> The size of the symbols used to render data
|
|
102
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts, in pixels.
|
|
103
|
+
* This value overrides any set at the chart level.</dd>
|
|
104
|
+
* <dt>symbol-style</dt> <dd><code>=</code> The style of the symbols used to render data
|
|
105
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts.
|
|
106
|
+
* This value overrides any setting at the chart level.</dd>
|
|
107
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
108
|
+
* display the series.</dd>
|
|
109
|
+
* <dt>type</dt> <dd><code>@</code> The {@link MovingAverageType} value for the moving average series.</dd>
|
|
110
|
+
* <dt>period</dt> <dd><code>@</code> The period for the moving average calculation.</dd>
|
|
111
|
+
* </dl>
|
|
112
|
+
*
|
|
113
|
+
*/
|
|
114
|
+
export declare class WjFlexChartMovingAverage extends WjTrendLineBase {
|
|
115
|
+
constructor();
|
|
116
|
+
readonly _controlConstructor: any;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* AngularJS directive for the {@link FlexChart} and {@link FinancialChart} {@link YFunctionSeries} object.
|
|
120
|
+
*
|
|
121
|
+
* The <b>wj-flex-chart-y-function-series</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} or {@link wijmo.angular.chart.finance.WjFinancialChart} directive.
|
|
122
|
+
* It supports the following attributes:
|
|
123
|
+
*
|
|
124
|
+
* <dl class="dl-horizontal">
|
|
125
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
126
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
127
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
128
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
129
|
+
* <dt>chart-type</dt> <dd><code>@</code> The chart type to use in rendering objects for this series
|
|
130
|
+
* objects. This value overrides the default chart type set on the chart. See
|
|
131
|
+
* {@link ChartType}.</dd>
|
|
132
|
+
* <dt>css-class</dt> <dd><code>@</code> The CSS class to use for the series.</dd>
|
|
133
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
134
|
+
* data for this series.</dd>
|
|
135
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
136
|
+
* <dt>style</dt> <dd><code>=</code> The series style. Use ng-attr-style to specify the series
|
|
137
|
+
* style object as an object. See the section on ngAttr attribute bindings in
|
|
138
|
+
* <a target="_blank" href="https://docs.angularjs.org/guide/directive">
|
|
139
|
+
* AngularJS Creating Custom Directives</a> and the <a target="_blank" href=
|
|
140
|
+
* "https://demos.wijmo.com/5/Angular/FlexChartIntro/FlexChartIntro/#Styling">
|
|
141
|
+
* FlexChart 101 Styling Series</a> sample for more information.</dd>
|
|
142
|
+
* <dt>symbol-marker</dt><dd><code>@</code> The shape of marker to use for the series. This value
|
|
143
|
+
* overrides the default marker set on the chart. See {@link Marker}.</dd>
|
|
144
|
+
* <dt>symbol-size</dt> <dd><code>@</code> The size of the symbols used to render data
|
|
145
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts, in pixels.
|
|
146
|
+
* This value overrides any set at the chart level.</dd>
|
|
147
|
+
* <dt>symbol-style</dt> <dd><code>=</code> The style of the symbols used to render data
|
|
148
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts.
|
|
149
|
+
* This value overrides any setting at the chart level.</dd>
|
|
150
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
151
|
+
* display the series.</dd>
|
|
152
|
+
* <dt>sample-count</dt> <dd><code>@</code> The sample count for the calculation.</dd>
|
|
153
|
+
* <dt>min</dt> <dd><code>@</code> The minimum value of the parameter for calculating a function.</dd>
|
|
154
|
+
* <dt>max</dt> <dd><code>@</code> The maximum value of the parameter for calculating a function.</dd>
|
|
155
|
+
* <dt>func</dt> <dd><code>@</code> The function used to calculate Y value.</dd>
|
|
156
|
+
* </dl>
|
|
157
|
+
*
|
|
158
|
+
*/
|
|
159
|
+
export declare class WjFlexChartYFunctionSeries extends WjTrendLineBase {
|
|
160
|
+
constructor();
|
|
161
|
+
readonly _controlConstructor: any;
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* AngularJS directive for the {@link FlexChart} and {@link FinancialChart} {@link wijmo.angular.chart.analytics.WjFlexChartParametricFunctionSeries} object.
|
|
165
|
+
*
|
|
166
|
+
* The <b>wj-flex-chart-parametric-function-series</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} or {@link wijmo.angular.chart.finance.WjFinancialChart} directive.
|
|
167
|
+
* It supports the following attributes:
|
|
168
|
+
*
|
|
169
|
+
* <dl class="dl-horizontal">
|
|
170
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
171
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
172
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
173
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
174
|
+
* <dt>chart-type</dt> <dd><code>@</code> The chart type to use in rendering objects for this series
|
|
175
|
+
* objects. This value overrides the default chart type set on the chart. See
|
|
176
|
+
* {@link ChartType}.</dd>
|
|
177
|
+
* <dt>css-class</dt> <dd><code>@</code> The CSS class to use for the series.</dd>
|
|
178
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
179
|
+
* data for this series.</dd>
|
|
180
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
181
|
+
* <dt>style</dt> <dd><code>=</code> The series style. Use ng-attr-style to specify the series
|
|
182
|
+
* style object as an object. See the section on ngAttr attribute bindings in
|
|
183
|
+
* <a target="_blank" href="https://docs.angularjs.org/guide/directive">
|
|
184
|
+
* AngularJS Creating Custom Directives</a> and the <a target="_blank" href=
|
|
185
|
+
* "https://demos.wijmo.com/5/Angular/FlexChartIntro/FlexChartIntro/#Styling">
|
|
186
|
+
* FlexChart 101 Styling Series</a> sample for more information.</dd>
|
|
187
|
+
* <dt>symbol-marker</dt><dd><code>@</code> The shape of marker to use for the series. This value
|
|
188
|
+
* overrides the default marker set on the chart. See {@link Marker}.</dd>
|
|
189
|
+
* <dt>symbol-size</dt> <dd><code>@</code> The size of the symbols used to render data
|
|
190
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts, in pixels.
|
|
191
|
+
* This value overrides any set at the chart level.</dd>
|
|
192
|
+
* <dt>symbol-style</dt> <dd><code>=</code> The style of the symbols used to render data
|
|
193
|
+
* points in this series for Scatter, LineSymbols, and SplineSymbols charts.
|
|
194
|
+
* This value overrides any setting at the chart level.</dd>
|
|
195
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
196
|
+
* display the series.</dd>
|
|
197
|
+
* <dt>sample-count</dt> <dd><code>@</code> The sample count for the calculation.</dd>
|
|
198
|
+
* <dt>min</dt> <dd><code>@</code> The minimum value of the parameter for calculating a function.</dd>
|
|
199
|
+
* <dt>max</dt> <dd><code>@</code> The maximum value of the parameter for calculating a function.</dd>
|
|
200
|
+
* <dt>x-func</dt> <dd><code>@</code> The function used to calculate the x value.</dd>
|
|
201
|
+
* <dt>y-func</dt> <dd><code>@</code> The function used to calculate the y value.</dd>
|
|
202
|
+
* </dl>
|
|
203
|
+
*
|
|
204
|
+
*/
|
|
205
|
+
export declare class WjFlexChartParametricFunctionSeries extends WjTrendLineBase {
|
|
206
|
+
constructor();
|
|
207
|
+
readonly _controlConstructor: any;
|
|
208
|
+
_initProps(): void;
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* AngularJS directive for the {@link FlexChart} and {@link FinancialChart} {@link Waterfall} object.
|
|
212
|
+
*
|
|
213
|
+
* The <b>wj-flex-chart-waterfall</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} or {@link wijmo.angular.chart.finance.WjFinancialChart} directive.
|
|
214
|
+
* It supports the following attributes:
|
|
215
|
+
*
|
|
216
|
+
* <dl class="dl-horizontal">
|
|
217
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
218
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
219
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
220
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
221
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
222
|
+
* data for this series.</dd>
|
|
223
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
224
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
225
|
+
* display the series.</dd>
|
|
226
|
+
* <dt>relative-data</dt> <dd><code>@</code> The value that determines whether the given data is relative.</dd>
|
|
227
|
+
* <dt>start</dt> <dd><code>@</code> The value of the start bar.</dd>
|
|
228
|
+
* <dt>start-label</dt> <dd><code>@</code> The label of the start bar.</dd>
|
|
229
|
+
* <dt>show-total</dt> <dd><code>@</code> The value that determines whether the show the total bar.</dd>
|
|
230
|
+
* <dt>total-label</dt> <dd><code>@</code> The label of the total bar.</dd>
|
|
231
|
+
* <dt>show-intermediate-total</dt> <dd><code>@</code> The value that determines whether to show the intermediate total bar.</dd>
|
|
232
|
+
* <dt>intermediate-total-positions</dt> <dd><code>@</code> The value that contains the index for positions of the intermediate total bar.</dd>
|
|
233
|
+
* <dt>intermediate-total-labels</dt> <dd><code>@</code> The value that contains the label of the intermediate total bar.</dd>
|
|
234
|
+
* <dt>connector-lines</dt> <dd><code>@</code> The value that determines whether to show connector lines.</dd>
|
|
235
|
+
* <dt>styles</dt> <dd><code>@</code> The value of the waterfall styles.</dd>
|
|
236
|
+
* </dl>
|
|
237
|
+
*/
|
|
238
|
+
export declare class WjFlexChartWaterfall extends WjSeriesBase {
|
|
239
|
+
constructor();
|
|
240
|
+
readonly _controlConstructor: any;
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* AngularJS directive for the {@link FlexChart} and {@link FinancialChart} {@link BoxWhisker} object.
|
|
244
|
+
*
|
|
245
|
+
* The <b>wj-flex-chart-box-whisker</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} or {@link wijmo.angular.chart.finance.WjFinancialChart} directive.
|
|
246
|
+
* It supports the following attributes:
|
|
247
|
+
*
|
|
248
|
+
* <dl class="dl-horizontal">
|
|
249
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
250
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
251
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
252
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
253
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
254
|
+
* data for this series.</dd>
|
|
255
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
256
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
257
|
+
* display the series.</dd>
|
|
258
|
+
* <dt>quartile-calculation</dt> <dd><code>@</code> The value that specifies the quartile calculation for the Box&Whisker chart.</dd>
|
|
259
|
+
* <dt>group-width</dt> <dd><code>@</code> The value that determines the group width as a percentage for the Box&Whisker chart.</dd>
|
|
260
|
+
* <dt>gap-width</dt> <dd><code>@</code> The value that determines the gap width as a percentage for the Box&Whisker chart.</dd>
|
|
261
|
+
* <dt>show-mean-line</dt> <dd><code>@</code> The value that determines whether to show the mean line for the Box&Whisker chart.</dd>
|
|
262
|
+
* <dt>mean-line-style</dt> <dd><code>@</code> The value that specifies the style for the mean line.</dd>
|
|
263
|
+
* <dt>show-mean-marker</dt> <dd><code>@</code> The value that determines whether to show the mean marker for the Box&Whisker chart.</dd>
|
|
264
|
+
* <dt>mean-marker-style</dt> <dd><code>@</code> The value that specifies the style for the mean marker.</dd>
|
|
265
|
+
* <dt>show-inner-points</dt> <dd><code>@</code> The value that determines whether to show the inner points for the Box&Whisker chart.</dd>
|
|
266
|
+
* <dt>show-outliers</dt> <dd><code>@</code> The value that determines whether to show the outliers for the Box&Whisker chart.</dd>
|
|
267
|
+
* </dl>
|
|
268
|
+
*
|
|
269
|
+
*/
|
|
270
|
+
export declare class WjFlexChartBoxWhisker extends WjSeriesBase {
|
|
271
|
+
constructor();
|
|
272
|
+
readonly _controlConstructor: any;
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* AngularJS directive for the {@link FlexChart} {@link ErrorBar} object.
|
|
276
|
+
*
|
|
277
|
+
* The <b>wj-flex-chart-error-bar</b> directive must be contained in a {@link wijmo.angular.chart.WjFlexChart} directive.
|
|
278
|
+
* It supports the following attributes:
|
|
279
|
+
*
|
|
280
|
+
* <dl class="dl-horizontal">
|
|
281
|
+
* <dt>binding</dt> <dd><code>@</code> The name of the property that contains Y values for the
|
|
282
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
283
|
+
* <dt>binding-x</dt> <dd><code>@</code> The name of the property that contains X values for the
|
|
284
|
+
* series. This value overrides any binding set for the chart.</dd>
|
|
285
|
+
* <dt>items-source</dt> <dd><code>=</code> An array or {@link ICollectionView} object that contains
|
|
286
|
+
* data for this series.</dd>
|
|
287
|
+
* <dt>name</dt> <dd><code>@</code> The name of the series to show in the legend.</dd>
|
|
288
|
+
* <dt>visibility</dt> <dd><code>=</code> The {@link SeriesVisibility} value indicating whether and where to
|
|
289
|
+
* display the series.</dd>
|
|
290
|
+
* <dt>error-bar-style</dt> <dd><code>@</code> The value that specifies the ErrorBar style.</dd>
|
|
291
|
+
* <dt>value</dt> <dd><code>@</code> The value that specifies the error value of the series.</dd>
|
|
292
|
+
* <dt>error-amount</dt> <dd><code>@</code> The value that specifies the error amount of the series.</dd>
|
|
293
|
+
* <dt>end-style</dt> <dd><code>@</code> The value that specifies the end style of the series.</dd>
|
|
294
|
+
* <dt>direction</dt> <dd><code>@</code> The value that specifies the direction of the series.</dd>
|
|
295
|
+
* </dl>
|
|
296
|
+
*
|
|
297
|
+
*/
|
|
298
|
+
export declare class WjFlexChartErrorBar extends WjFlexChartSeries {
|
|
299
|
+
constructor();
|
|
300
|
+
readonly _controlConstructor: any;
|
|
301
|
+
}
|
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(r,e){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(r,e){r.__proto__=e}||function(r,e){for(var t in e)e.hasOwnProperty(t)&&(r[t]=e[t])})(r,e)};return function(r,e){extendStatics(r,e);function __(){this.constructor=r}r.prototype=null===e?Object.create(e):(__.prototype=e.prototype,new __)}}(),__importStar=this&&this.__importStar||function(r){if(r&&r.__esModule)return r;var e={};if(null!=r)for(var t in r)Object.hasOwnProperty.call(r,t)&&(e[t]=r[t]);e.default=r;return e};Object.defineProperty(exports,"__esModule",{value:!0});var wijmo_angular_base_1=require("@mescius/wijmo.angular.base"),wijmo_angular_chart_1=require("@mescius/wijmo.angular.chart"),mNg=__importStar(require("angular")),wjcChartAnalytics=__importStar(require("@mescius/wijmo.chart.analytics")),wjNg=mNg,wijmoChartAnalyticsName="wj.chart.analytics";exports.ngModuleName=wijmoChartAnalyticsName;var wijmoChartAnalytics=wijmo_angular_base_1._registerNgModule(wijmoChartAnalyticsName);if(wijmo_angular_base_1.softRefChartAnalytics()){wijmoChartAnalytics.directive("wjFlexChartTrendLine",[function(){return new WjFlexChartTrendLine}]);wijmoChartAnalytics.directive("wjFlexChartMovingAverage",[function(){return new WjFlexChartMovingAverage}]);wijmoChartAnalytics.directive("wjFlexChartYFunctionSeries",[function(){return new WjFlexChartYFunctionSeries}]);wijmoChartAnalytics.directive("wjFlexChartParametricFunctionSeries",[function(){return new WjFlexChartParametricFunctionSeries}]);wijmoChartAnalytics.directive("wjFlexChartWaterfall",[function(){return new WjFlexChartWaterfall}]);wijmoChartAnalytics.directive("wjFlexChartBoxWhisker",[function(){return new WjFlexChartBoxWhisker}]);wijmoChartAnalytics.directive("wjFlexChartErrorBar",[function(){return new WjFlexChartErrorBar}])}var WjTrendLineBase=function(r){__extends(WjTrendLineBase,r);function WjTrendLineBase(){var e=r.call(this)||this;e.require=["?^wjFlexChart","?^wjFinancialChart"];e.template='<div class="wjTrendLineBase" ng-transclude />';return e}Object.defineProperty(WjTrendLineBase.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.TrendLineBase},enumerable:!0,configurable:!0});return WjTrendLineBase}(wijmo_angular_chart_1.WjSeriesBase);exports.WjTrendLineBase=WjTrendLineBase;var WjFlexChartTrendLine=function(r){__extends(WjFlexChartTrendLine,r);function WjFlexChartTrendLine(){var e=r.call(this)||this;e.template='<div class="wjTrendLine" ng-transclude />';return e}Object.defineProperty(WjFlexChartTrendLine.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.TrendLine},enumerable:!0,configurable:!0});return WjFlexChartTrendLine}(WjTrendLineBase);exports.WjFlexChartTrendLine=WjFlexChartTrendLine;var WjFlexChartMovingAverage=function(r){__extends(WjFlexChartMovingAverage,r);function WjFlexChartMovingAverage(){var e=r.call(this)||this;e.template='<div class="wjMovingAverage" ng-transclude />';return e}Object.defineProperty(WjFlexChartMovingAverage.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.MovingAverage},enumerable:!0,configurable:!0});return WjFlexChartMovingAverage}(WjTrendLineBase);exports.WjFlexChartMovingAverage=WjFlexChartMovingAverage;var WjFlexChartYFunctionSeries=function(r){__extends(WjFlexChartYFunctionSeries,r);function WjFlexChartYFunctionSeries(){var e=r.call(this)||this;e.template='<div class="wjYFunctionSeries" ng-transclude />';return e}Object.defineProperty(WjFlexChartYFunctionSeries.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.YFunctionSeries},enumerable:!0,configurable:!0});return WjFlexChartYFunctionSeries}(WjTrendLineBase);exports.WjFlexChartYFunctionSeries=WjFlexChartYFunctionSeries;var WjFlexChartParametricFunctionSeries=function(r){__extends(WjFlexChartParametricFunctionSeries,r);function WjFlexChartParametricFunctionSeries(){var e=r.call(this)||this;e.template='<div class="wjParametricFunctionSeries" ng-transclude />';return e}Object.defineProperty(WjFlexChartParametricFunctionSeries.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.ParametricFunctionSeries},enumerable:!0,configurable:!0});WjFlexChartParametricFunctionSeries.prototype._initProps=function(){r.prototype._initProps.call(this);wijmo_angular_base_1.MetaFactory.findProp("func",this._props).customHandler=function(r,e,t,n,a){null!=t&&(e.xFunc=t)}};return WjFlexChartParametricFunctionSeries}(WjTrendLineBase);exports.WjFlexChartParametricFunctionSeries=WjFlexChartParametricFunctionSeries;var WjFlexChartWaterfall=function(r){__extends(WjFlexChartWaterfall,r);function WjFlexChartWaterfall(){var e=r.call(this)||this;e.require=["?^wjFlexChart","?^wjFinancialChart"];e.template='<div class="wjWaterfall" ng-transclude />';return e}Object.defineProperty(WjFlexChartWaterfall.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.Waterfall},enumerable:!0,configurable:!0});return WjFlexChartWaterfall}(wijmo_angular_chart_1.WjSeriesBase);exports.WjFlexChartWaterfall=WjFlexChartWaterfall;var WjFlexChartBoxWhisker=function(r){__extends(WjFlexChartBoxWhisker,r);function WjFlexChartBoxWhisker(){var e=r.call(this)||this;e.require=["?^wjFlexChart","?^wjFinancialChart"];e.template='<div class="wjBoxWhisker" ng-transclude />';return e}Object.defineProperty(WjFlexChartBoxWhisker.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.BoxWhisker},enumerable:!0,configurable:!0});return WjFlexChartBoxWhisker}(wijmo_angular_chart_1.WjSeriesBase);exports.WjFlexChartBoxWhisker=WjFlexChartBoxWhisker;var WjFlexChartErrorBar=function(r){__extends(WjFlexChartErrorBar,r);function WjFlexChartErrorBar(){var e=r.call(this)||this;e.require=["?^wjFlexChart"];e.template='<div class="wjErrorBar" ng-transclude />';return e}Object.defineProperty(WjFlexChartErrorBar.prototype,"_controlConstructor",{get:function(){return wjcChartAnalytics.ErrorBar},enumerable:!0,configurable:!0});return WjFlexChartErrorBar}(wijmo_angular_chart_1.WjFlexChartSeries);exports.WjFlexChartErrorBar=WjFlexChartErrorBar;
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mescius/wijmo.angular.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
|
+
"@mescius/wijmo.angular.base": "5.20232.939",
|
|
13
|
+
"@mescius/wijmo.angular.chart": "5.20232.939"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://developer.mescius.com/wijmo",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://developer.mescius.com/forums/wijmo"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"control",
|
|
21
|
+
"component",
|
|
22
|
+
"ui",
|
|
23
|
+
"control library",
|
|
24
|
+
"component library",
|
|
25
|
+
"ui library",
|
|
26
|
+
"control-library",
|
|
27
|
+
"component-library",
|
|
28
|
+
"ui-library",
|
|
29
|
+
"grid",
|
|
30
|
+
"data grid",
|
|
31
|
+
"data-grid",
|
|
32
|
+
"datagrid",
|
|
33
|
+
"angular grid",
|
|
34
|
+
"react grid",
|
|
35
|
+
"vue grid",
|
|
36
|
+
"angular-grid",
|
|
37
|
+
"react-grid",
|
|
38
|
+
"vue-grid"
|
|
39
|
+
],
|
|
40
|
+
"module": "./es5-esm.js",
|
|
41
|
+
"esm5": "./es5-esm.js",
|
|
42
|
+
"wj-esm5": "./es5-esm.js",
|
|
43
|
+
"es2015Cjs": "./es2015-commonjs.js",
|
|
44
|
+
"wj-es2015Cjs": "./es2015-commonjs.js",
|
|
45
|
+
"esm2015": "./es2015-esm.js",
|
|
46
|
+
"wj-esm2015": "./es2015-esm.js"
|
|
47
|
+
}
|