@syncfusion/ej2-angular-charts 32.2.9-ngcc → 32.2.9
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/CHANGELOG.md +3815 -0
- package/README.md +8 -1
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/accumulation-chart/accumulationchart-all.module.mjs +53 -0
- package/esm2020/src/accumulation-chart/accumulationchart.component.mjs +146 -0
- package/esm2020/src/accumulation-chart/accumulationchart.module.mjs +43 -0
- package/esm2020/src/accumulation-chart/annotations.directive.mjs +62 -0
- package/esm2020/src/accumulation-chart/series.directive.mjs +62 -0
- package/esm2020/src/bullet-chart/bulletchart-all.module.mjs +32 -0
- package/esm2020/src/bullet-chart/bulletchart.component.mjs +85 -0
- package/esm2020/src/bullet-chart/bulletchart.module.mjs +34 -0
- package/esm2020/src/bullet-chart/ranges.directive.mjs +54 -0
- package/esm2020/src/chart/annotations.directive.mjs +60 -0
- package/esm2020/src/chart/axes.directive.mjs +58 -0
- package/esm2020/src/chart/categories.directive.mjs +59 -0
- package/esm2020/src/chart/chart-all.module.mjs +206 -0
- package/esm2020/src/chart/chart.component.mjs +525 -0
- package/esm2020/src/chart/chart.module.mjs +142 -0
- package/esm2020/src/chart/columns.directive.mjs +52 -0
- package/esm2020/src/chart/indicators.directive.mjs +54 -0
- package/esm2020/src/chart/multilevellabels.directive.mjs +60 -0
- package/esm2020/src/chart/rangecolorsettings.directive.mjs +52 -0
- package/esm2020/src/chart/rows.directive.mjs +52 -0
- package/esm2020/src/chart/segments.directive.mjs +58 -0
- package/esm2020/src/chart/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/chart/series.directive.mjs +68 -0
- package/esm2020/src/chart/striplines.directive.mjs +56 -0
- package/esm2020/src/chart/trendlines.directive.mjs +58 -0
- package/esm2020/src/chart3d/axes.directive.mjs +52 -0
- package/esm2020/src/chart3d/chart3d-all.module.mjs +68 -0
- package/esm2020/src/chart3d/chart3d.component.mjs +189 -0
- package/esm2020/src/chart3d/chart3d.module.mjs +70 -0
- package/esm2020/src/chart3d/columns.directive.mjs +52 -0
- package/esm2020/src/chart3d/rows.directive.mjs +52 -0
- package/esm2020/src/chart3d/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/chart3d/series.directive.mjs +62 -0
- package/esm2020/src/circularchart3d/circularchart3d-all.module.mjs +47 -0
- package/esm2020/src/circularchart3d/circularchart3d.component.mjs +125 -0
- package/esm2020/src/circularchart3d/circularchart3d.module.mjs +43 -0
- package/esm2020/src/circularchart3d/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/circularchart3d/series.directive.mjs +62 -0
- package/esm2020/src/index.mjs +64 -0
- package/esm2020/src/range-navigator/rangenavigator-all.module.mjs +32 -0
- package/esm2020/src/range-navigator/rangenavigator.component.mjs +127 -0
- package/esm2020/src/range-navigator/rangenavigator.module.mjs +34 -0
- package/esm2020/src/range-navigator/series.directive.mjs +54 -0
- package/esm2020/src/smithchart/series.directive.mjs +46 -0
- package/esm2020/src/smithchart/smithchart-all.module.mjs +32 -0
- package/esm2020/src/smithchart/smithchart.component.mjs +78 -0
- package/esm2020/src/smithchart/smithchart.module.mjs +34 -0
- package/esm2020/src/sparkline/rangebandsettings.directive.mjs +46 -0
- package/esm2020/src/sparkline/sparkline-all.module.mjs +29 -0
- package/esm2020/src/sparkline/sparkline.component.mjs +71 -0
- package/esm2020/src/sparkline/sparkline.module.mjs +34 -0
- package/esm2020/src/stock-chart/annotations.directive.mjs +60 -0
- package/esm2020/src/stock-chart/axes.directive.mjs +52 -0
- package/esm2020/src/stock-chart/indicators.directive.mjs +54 -0
- package/esm2020/src/stock-chart/periods.directive.mjs +54 -0
- package/esm2020/src/stock-chart/rows.directive.mjs +52 -0
- package/esm2020/src/stock-chart/selecteddataindexes.directive.mjs +52 -0
- package/esm2020/src/stock-chart/series.directive.mjs +58 -0
- package/esm2020/src/stock-chart/stockchart-all.module.mjs +29 -0
- package/esm2020/src/stock-chart/stockchart.component.mjs +337 -0
- package/esm2020/src/stock-chart/stockchart.module.mjs +106 -0
- package/esm2020/src/stock-chart/stockevents.directive.mjs +54 -0
- package/esm2020/src/stock-chart/trendlines.directive.mjs +59 -0
- package/esm2020/syncfusion-ej2-angular-charts.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-charts.mjs +4376 -0
- package/fesm2015/syncfusion-ej2-angular-charts.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-charts.mjs +4376 -0
- package/fesm2020/syncfusion-ej2-angular-charts.mjs.map +1 -0
- package/package.json +28 -46
- package/public_api.d.ts +1 -1
- package/src/accumulation-chart/accumulationchart-all.module.d.ts +21 -15
- package/src/accumulation-chart/accumulationchart.component.d.ts +61 -58
- package/src/accumulation-chart/accumulationchart.module.d.ts +13 -5
- package/src/accumulation-chart/annotations.directive.d.ts +85 -80
- package/src/accumulation-chart/series.directive.d.ts +249 -244
- package/src/bullet-chart/bulletchart-all.module.d.ts +14 -8
- package/src/bullet-chart/bulletchart.component.d.ts +41 -38
- package/src/bullet-chart/bulletchart.module.d.ts +12 -5
- package/src/bullet-chart/ranges.directive.d.ts +73 -68
- package/src/chart/annotations.directive.d.ts +101 -96
- package/src/chart/axes.directive.d.ts +409 -381
- package/src/chart/categories.directive.d.ts +74 -69
- package/src/chart/chart-all.module.d.ts +72 -66
- package/src/chart/chart.component.d.ts +89 -86
- package/src/chart/chart.module.d.ts +24 -5
- package/src/chart/columns.directive.d.ts +35 -30
- package/src/chart/indicators.directive.d.ts +255 -250
- package/src/chart/multilevellabels.directive.d.ts +62 -57
- package/src/chart/rangecolorsettings.directive.d.ts +41 -36
- package/src/chart/rows.directive.d.ts +35 -30
- package/src/chart/segments.directive.d.ts +46 -41
- package/src/chart/selecteddataindexes.directive.d.ts +37 -32
- package/src/chart/series.directive.d.ts +488 -483
- package/src/chart/striplines.directive.d.ts +171 -166
- package/src/chart/trendlines.directive.d.ts +117 -112
- package/src/chart3d/axes.directive.d.ts +271 -266
- package/src/chart3d/chart3d-all.module.d.ts +26 -20
- package/src/chart3d/chart3d.component.d.ts +65 -62
- package/src/chart3d/chart3d.module.d.ts +16 -5
- package/src/chart3d/columns.directive.d.ts +31 -26
- package/src/chart3d/rows.directive.d.ts +31 -26
- package/src/chart3d/selecteddataindexes.directive.d.ts +37 -32
- package/src/chart3d/series.directive.d.ts +177 -172
- package/src/circularchart3d/circularchart3d-all.module.d.ts +19 -13
- package/src/circularchart3d/circularchart3d.component.d.ts +58 -55
- package/src/circularchart3d/circularchart3d.module.d.ts +13 -5
- package/src/circularchart3d/selecteddataindexes.directive.d.ts +37 -32
- package/src/circularchart3d/series.directive.d.ts +147 -142
- package/src/index.d.ts +63 -63
- package/src/range-navigator/rangenavigator-all.module.d.ts +14 -8
- package/src/range-navigator/rangenavigator.component.d.ts +44 -41
- package/src/range-navigator/rangenavigator.module.d.ts +12 -5
- package/src/range-navigator/series.directive.d.ts +83 -78
- package/src/smithchart/series.directive.d.ts +93 -88
- package/src/smithchart/smithchart-all.module.d.ts +14 -8
- package/src/smithchart/smithchart.component.d.ts +44 -41
- package/src/smithchart/smithchart.module.d.ts +12 -5
- package/src/sparkline/rangebandsettings.directive.d.ts +38 -33
- package/src/sparkline/sparkline-all.module.d.ts +13 -7
- package/src/sparkline/sparkline.component.d.ts +46 -43
- package/src/sparkline/sparkline.module.d.ts +12 -5
- package/src/stock-chart/annotations.directive.d.ts +89 -84
- package/src/stock-chart/axes.directive.d.ts +291 -286
- package/src/stock-chart/indicators.directive.d.ts +213 -208
- package/src/stock-chart/periods.directive.d.ts +47 -42
- package/src/stock-chart/rows.directive.d.ts +35 -30
- package/src/stock-chart/selecteddataindexes.directive.d.ts +37 -32
- package/src/stock-chart/series.directive.d.ts +247 -242
- package/src/stock-chart/stockchart-all.module.d.ts +13 -7
- package/src/stock-chart/stockchart.component.d.ts +68 -65
- package/src/stock-chart/stockchart.module.d.ts +20 -5
- package/src/stock-chart/stockevents.directive.d.ts +88 -83
- package/src/stock-chart/trendlines.directive.d.ts +118 -113
- package/syncfusion-ej2-angular-charts.d.ts +5 -0
- package/@syncfusion/ej2-angular-charts.es5.js +0 -5029
- package/@syncfusion/ej2-angular-charts.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-charts.js +0 -4747
- package/@syncfusion/ej2-angular-charts.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-charts.umd.js +0 -5719
- package/dist/ej2-angular-charts.umd.js.map +0 -1
- package/dist/ej2-angular-charts.umd.min.js +0 -11
- package/dist/ej2-angular-charts.umd.min.js.map +0 -1
- package/ej2-angular-charts.d.ts +0 -13
- package/ej2-angular-charts.metadata.json +0 -1
|
@@ -1,266 +1,271 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
*
|
|
22
|
-
* @
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
*
|
|
28
|
-
* *
|
|
29
|
-
* *
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
*
|
|
41
|
-
* @
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
*
|
|
47
|
-
* *
|
|
48
|
-
* *
|
|
49
|
-
* *
|
|
50
|
-
* *
|
|
51
|
-
* *
|
|
52
|
-
*
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
*
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
*
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
* *
|
|
76
|
-
* *
|
|
77
|
-
* *
|
|
78
|
-
* *
|
|
79
|
-
* *
|
|
80
|
-
* *
|
|
81
|
-
*
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
*
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
*
|
|
92
|
-
* *
|
|
93
|
-
*
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
*
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
*
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
*
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
*
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
*
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
*
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
*
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
*
|
|
154
|
-
*
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
*
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
*
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
*
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
*
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
*
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
*
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
*
|
|
190
|
-
* *
|
|
191
|
-
* *
|
|
192
|
-
* *
|
|
193
|
-
*
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
*
|
|
199
|
-
*
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
*
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
*
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
*
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
*
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
*
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
*
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
*
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
*
|
|
245
|
-
* *
|
|
246
|
-
* *
|
|
247
|
-
* *
|
|
248
|
-
* *
|
|
249
|
-
*
|
|
250
|
-
* @
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
*
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Axis3D Directive
|
|
6
|
+
* ```html
|
|
7
|
+
* <e-axes><e-axis></e-axis></e-axes>
|
|
8
|
+
* ```
|
|
9
|
+
*/
|
|
10
|
+
export declare class Chart3DAxisDirective extends ComplexBase<Chart3DAxisDirective> {
|
|
11
|
+
private viewContainerRef;
|
|
12
|
+
directivePropList: any;
|
|
13
|
+
/**
|
|
14
|
+
* Specifies the index of the column where the axis is associated,
|
|
15
|
+
* when the chart area is divided into multiple plot areas by using `columns`.
|
|
16
|
+
*
|
|
17
|
+
* @default 0
|
|
18
|
+
*/
|
|
19
|
+
columnIndex: any;
|
|
20
|
+
/**
|
|
21
|
+
* With this property, you can request axis to calculate intervals approximately equal to your specified interval.
|
|
22
|
+
* @default null
|
|
23
|
+
* @aspdefaultvalueignore
|
|
24
|
+
*/
|
|
25
|
+
desiredIntervals: any;
|
|
26
|
+
/**
|
|
27
|
+
* Specifies the position of labels at the edge of the axis.They are,
|
|
28
|
+
* * None: No action will be performed.
|
|
29
|
+
* * Hide: Edge label will be hidden.
|
|
30
|
+
* * Shift: Shifts the edge labels.
|
|
31
|
+
* @default 'None'
|
|
32
|
+
*/
|
|
33
|
+
edgeLabelPlacement: any;
|
|
34
|
+
/**
|
|
35
|
+
* Specifies the Trim property for an axis.
|
|
36
|
+
* @default false
|
|
37
|
+
*/
|
|
38
|
+
enableTrim: any;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies the interval for an axis.
|
|
41
|
+
* @default null
|
|
42
|
+
* @aspdefaultvalueignore
|
|
43
|
+
*/
|
|
44
|
+
interval: any;
|
|
45
|
+
/**
|
|
46
|
+
* Specifies the types like `Years`, `Months`, `Days`, `Hours`, `Minutes`, `Seconds` in date time axis.They are,
|
|
47
|
+
* * Auto: Defines the interval of the axis based on data.
|
|
48
|
+
* * Years: Defines the interval of the axis in years.
|
|
49
|
+
* * Months: Defines the interval of the axis in months.
|
|
50
|
+
* * Days: Defines the interval of the axis in days.
|
|
51
|
+
* * Hours: Defines the interval of the axis in hours.
|
|
52
|
+
* * Minutes: Defines the interval of the axis in minutes.
|
|
53
|
+
* @default 'Auto'
|
|
54
|
+
*/
|
|
55
|
+
intervalType: any;
|
|
56
|
+
/**
|
|
57
|
+
* Specifies indexed category axis.
|
|
58
|
+
* @default false
|
|
59
|
+
*/
|
|
60
|
+
isIndexed: any;
|
|
61
|
+
/**
|
|
62
|
+
* It specifies whether the axis to be rendered in inversed manner or not.
|
|
63
|
+
* @default false
|
|
64
|
+
*/
|
|
65
|
+
isInversed: any;
|
|
66
|
+
/**
|
|
67
|
+
* Used to format the axis label that accepts any global string format like 'C', 'n1', 'P' etc.
|
|
68
|
+
* It also accepts placeholder like '{value}°C' in which value represent the axis label, e.g, 20°C.
|
|
69
|
+
* @default ''
|
|
70
|
+
*/
|
|
71
|
+
labelFormat: any;
|
|
72
|
+
/**
|
|
73
|
+
* Specifies the actions like `None`, `Hide`, `Trim`, `Wrap`, `MultipleRows`, `Rotate45`, and `Rotate90`
|
|
74
|
+
* when the axis labels intersect with each other.They are,
|
|
75
|
+
* * None: Shows all the labels.
|
|
76
|
+
* * Hide: Hides the label when it intersects.
|
|
77
|
+
* * Trim: Trim the label when it intersects.
|
|
78
|
+
* * Wrap: Wrap the label when it intersects.
|
|
79
|
+
* * MultipleRows: Shows the label in MultipleRows when it intersects.
|
|
80
|
+
* * Rotate45: Rotates the label to 45 degree when it intersects.
|
|
81
|
+
* * Rotate90: Rotates the label to 90 degree when it intersects.
|
|
82
|
+
* @default Trim
|
|
83
|
+
*/
|
|
84
|
+
labelIntersectAction: any;
|
|
85
|
+
/**
|
|
86
|
+
* Specifies the labelPadding from axis.
|
|
87
|
+
* @default 5
|
|
88
|
+
*/
|
|
89
|
+
labelPadding: any;
|
|
90
|
+
/**
|
|
91
|
+
* Specifies the placement of a label for category axis. They are,
|
|
92
|
+
* * betweenTicks: Renders the label between the ticks.
|
|
93
|
+
* * onTicks: Renders the label on the ticks.
|
|
94
|
+
* @default 'OnTicks'
|
|
95
|
+
*/
|
|
96
|
+
labelPlacement: any;
|
|
97
|
+
/**
|
|
98
|
+
* The angle to which the axis label gets rotated.
|
|
99
|
+
* @default 0
|
|
100
|
+
*/
|
|
101
|
+
labelRotation: any;
|
|
102
|
+
/**
|
|
103
|
+
* Options to customize the axis label.
|
|
104
|
+
*/
|
|
105
|
+
labelStyle: any;
|
|
106
|
+
/**
|
|
107
|
+
* The base value for logarithmic axis. It requires `valueType` to be `Logarithmic`.
|
|
108
|
+
* @default 10
|
|
109
|
+
*/
|
|
110
|
+
logBase: any;
|
|
111
|
+
/**
|
|
112
|
+
* Options for customizing major grid lines.
|
|
113
|
+
*/
|
|
114
|
+
majorGridLines: any;
|
|
115
|
+
/**
|
|
116
|
+
* Options for customizing major tick lines.
|
|
117
|
+
*/
|
|
118
|
+
majorTickLines: any;
|
|
119
|
+
/**
|
|
120
|
+
* Specifies the maximum range of an axis.
|
|
121
|
+
* @default null
|
|
122
|
+
*/
|
|
123
|
+
maximum: any;
|
|
124
|
+
/**
|
|
125
|
+
* Specifies the maximum width of an axis label.
|
|
126
|
+
* @default 34.
|
|
127
|
+
*/
|
|
128
|
+
maximumLabelWidth: any;
|
|
129
|
+
/**
|
|
130
|
+
* The maximum number of label count per 100 pixels with respect to the axis length.
|
|
131
|
+
* @default 3
|
|
132
|
+
*/
|
|
133
|
+
maximumLabels: any;
|
|
134
|
+
/**
|
|
135
|
+
* Specifies the minimum range of an axis.
|
|
136
|
+
* @default null
|
|
137
|
+
*/
|
|
138
|
+
minimum: any;
|
|
139
|
+
/**
|
|
140
|
+
* Options for customizing minor grid lines.
|
|
141
|
+
*/
|
|
142
|
+
minorGridLines: any;
|
|
143
|
+
/**
|
|
144
|
+
* Options for customizing minor tick lines.
|
|
145
|
+
*/
|
|
146
|
+
minorTickLines: any;
|
|
147
|
+
/**
|
|
148
|
+
* Specifies the number of minor ticks per interval.
|
|
149
|
+
* @default 0
|
|
150
|
+
*/
|
|
151
|
+
minorTicksPerInterval: any;
|
|
152
|
+
/**
|
|
153
|
+
* Unique identifier of an axis.
|
|
154
|
+
* To associate an axis with the series, set this name to the xAxisName/yAxisName properties of the series.
|
|
155
|
+
* @default ''
|
|
156
|
+
*/
|
|
157
|
+
name: any;
|
|
158
|
+
/**
|
|
159
|
+
* If set to true, the axis will render at the opposite side of its default position.
|
|
160
|
+
* @default false
|
|
161
|
+
*/
|
|
162
|
+
opposedPosition: any;
|
|
163
|
+
/**
|
|
164
|
+
* Left and right padding for the plot area in pixels.
|
|
165
|
+
* @default 0
|
|
166
|
+
*/
|
|
167
|
+
plotOffset: any;
|
|
168
|
+
/**
|
|
169
|
+
* Bottom padding for the plot area in pixels.
|
|
170
|
+
* @default null
|
|
171
|
+
*/
|
|
172
|
+
plotOffsetBottom: any;
|
|
173
|
+
/**
|
|
174
|
+
* Left padding for the plot area in pixels.
|
|
175
|
+
* @default null
|
|
176
|
+
*/
|
|
177
|
+
plotOffsetLeft: any;
|
|
178
|
+
/**
|
|
179
|
+
* Right padding for the plot area in pixels.
|
|
180
|
+
* @default null
|
|
181
|
+
*/
|
|
182
|
+
plotOffsetRight: any;
|
|
183
|
+
/**
|
|
184
|
+
* Top padding for the plot area in pixels.
|
|
185
|
+
* @default null
|
|
186
|
+
*/
|
|
187
|
+
plotOffsetTop: any;
|
|
188
|
+
/**
|
|
189
|
+
* Specifies the padding for the axis range in terms of interval.They are,
|
|
190
|
+
* * none: Padding cannot be applied to the axis.
|
|
191
|
+
* * normal: Padding is applied to the axis based on the range calculation.
|
|
192
|
+
* * additional: Interval of the axis is added as padding to the minimum and maximum values of the range.
|
|
193
|
+
* * round: Axis range is rounded to the nearest possible value divided by the interval.
|
|
194
|
+
* @default 'Auto'
|
|
195
|
+
*/
|
|
196
|
+
rangePadding: any;
|
|
197
|
+
/**
|
|
198
|
+
* Specifies the index of the row where the axis is associated, when the chart area is divided into multiple plot areas by using `rows`.
|
|
199
|
+
*
|
|
200
|
+
* @default 0
|
|
201
|
+
*/
|
|
202
|
+
rowIndex: any;
|
|
203
|
+
/**
|
|
204
|
+
* Specifies the skeleton format in which the dateTime format will process.
|
|
205
|
+
* @default ''
|
|
206
|
+
*/
|
|
207
|
+
skeleton: any;
|
|
208
|
+
/**
|
|
209
|
+
* It specifies the type of format to be used in dateTime format process.
|
|
210
|
+
* @default 'DateTime'
|
|
211
|
+
* @deprecated
|
|
212
|
+
*/
|
|
213
|
+
skeletonType: any;
|
|
214
|
+
/**
|
|
215
|
+
* Specifies the number of `columns` or `rows` an axis has to span horizontally or vertically.
|
|
216
|
+
* @default 1
|
|
217
|
+
*/
|
|
218
|
+
span: any;
|
|
219
|
+
/**
|
|
220
|
+
* It specifies whether the axis to be start from zero.
|
|
221
|
+
* @default true
|
|
222
|
+
*/
|
|
223
|
+
startFromZero: any;
|
|
224
|
+
/**
|
|
225
|
+
* Specifies the title of an axis.
|
|
226
|
+
* @default ''
|
|
227
|
+
*/
|
|
228
|
+
title: any;
|
|
229
|
+
/**
|
|
230
|
+
* Specifies the titlePadding from axis label.
|
|
231
|
+
* @default 5
|
|
232
|
+
*/
|
|
233
|
+
titlePadding: any;
|
|
234
|
+
/**
|
|
235
|
+
* Defines an angle to rotate axis title. By default, angle auto calculated based on position and orientation of axis.
|
|
236
|
+
* @default null
|
|
237
|
+
*/
|
|
238
|
+
titleRotation: any;
|
|
239
|
+
/**
|
|
240
|
+
* Options for customizing the axis title.
|
|
241
|
+
*/
|
|
242
|
+
titleStyle: any;
|
|
243
|
+
/**
|
|
244
|
+
* Specifies the data types that the axis can handle:
|
|
245
|
+
* * Double: This type is used for rendering a numeric axis to accommodate numeric data.
|
|
246
|
+
* * DateTime: This type is utilized for rendering a date-time axis to manage date-time data.
|
|
247
|
+
* * Category: This type is employed for rendering a category axis to manage categorical data.
|
|
248
|
+
* * Logarithmic: This type is applied for rendering a logarithmic axis to handle a wide range of values.
|
|
249
|
+
* * DateTimeCategory: This type is used to render a date time category axis for managing business days.
|
|
250
|
+
* @default 'Double'
|
|
251
|
+
* @isenumeration true
|
|
252
|
+
*/
|
|
253
|
+
valueType: any;
|
|
254
|
+
/**
|
|
255
|
+
* If set to true, axis label will be visible.
|
|
256
|
+
* @default true
|
|
257
|
+
*/
|
|
258
|
+
visible: any;
|
|
259
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
260
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DAxisDirective, never>;
|
|
261
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DAxisDirective, "e-chart3daxes>e-chart3daxis", never, { "columnIndex": "columnIndex"; "desiredIntervals": "desiredIntervals"; "edgeLabelPlacement": "edgeLabelPlacement"; "enableTrim": "enableTrim"; "interval": "interval"; "intervalType": "intervalType"; "isIndexed": "isIndexed"; "isInversed": "isInversed"; "labelFormat": "labelFormat"; "labelIntersectAction": "labelIntersectAction"; "labelPadding": "labelPadding"; "labelPlacement": "labelPlacement"; "labelRotation": "labelRotation"; "labelStyle": "labelStyle"; "logBase": "logBase"; "majorGridLines": "majorGridLines"; "majorTickLines": "majorTickLines"; "maximum": "maximum"; "maximumLabelWidth": "maximumLabelWidth"; "maximumLabels": "maximumLabels"; "minimum": "minimum"; "minorGridLines": "minorGridLines"; "minorTickLines": "minorTickLines"; "minorTicksPerInterval": "minorTicksPerInterval"; "name": "name"; "opposedPosition": "opposedPosition"; "plotOffset": "plotOffset"; "plotOffsetBottom": "plotOffsetBottom"; "plotOffsetLeft": "plotOffsetLeft"; "plotOffsetRight": "plotOffsetRight"; "plotOffsetTop": "plotOffsetTop"; "rangePadding": "rangePadding"; "rowIndex": "rowIndex"; "skeleton": "skeleton"; "skeletonType": "skeletonType"; "span": "span"; "startFromZero": "startFromZero"; "title": "title"; "titlePadding": "titlePadding"; "titleRotation": "titleRotation"; "titleStyle": "titleStyle"; "valueType": "valueType"; "visible": "visible"; }, {}, never>;
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* Chart3DAxis Array Directive
|
|
265
|
+
* @private
|
|
266
|
+
*/
|
|
267
|
+
export declare class Chart3DAxesDirective extends ArrayBase<Chart3DAxesDirective> {
|
|
268
|
+
constructor();
|
|
269
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DAxesDirective, never>;
|
|
270
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Chart3DAxesDirective, "ejs-chart3d>e-chart3daxes", never, {}, {}, ["children"]>;
|
|
271
|
+
}
|
|
@@ -1,20 +1,26 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
import { ValueProvider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "./chart3d.module";
|
|
5
|
+
export declare const ColumnSeries3DService: ValueProvider;
|
|
6
|
+
export declare const StackingColumnSeries3DService: ValueProvider;
|
|
7
|
+
export declare const BarSeries3DService: ValueProvider;
|
|
8
|
+
export declare const StackingBarSeries3DService: ValueProvider;
|
|
9
|
+
export declare const Category3DService: ValueProvider;
|
|
10
|
+
export declare const DateTime3DService: ValueProvider;
|
|
11
|
+
export declare const DateTimeCategory3DService: ValueProvider;
|
|
12
|
+
export declare const Logarithmic3DService: ValueProvider;
|
|
13
|
+
export declare const Tooltip3DService: ValueProvider;
|
|
14
|
+
export declare const Legend3DService: ValueProvider;
|
|
15
|
+
export declare const DataLabel3DService: ValueProvider;
|
|
16
|
+
export declare const Selection3DService: ValueProvider;
|
|
17
|
+
export declare const Export3DService: ValueProvider;
|
|
18
|
+
export declare const Highlight3DService: ValueProvider;
|
|
19
|
+
/**
|
|
20
|
+
* NgModule definition for the Chart3D component with providers.
|
|
21
|
+
*/
|
|
22
|
+
export declare class Chart3DAllModule {
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Chart3DAllModule, never>;
|
|
24
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Chart3DAllModule, never, [typeof i1.CommonModule, typeof i2.Chart3DModule], [typeof i2.Chart3DModule]>;
|
|
25
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<Chart3DAllModule>;
|
|
26
|
+
}
|