igniteui-angular-core 19.1.0 → 20.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-core.umd.js +1402 -1246
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/AxisDescription.js +171 -139
- package/esm2015/lib/AxisDescriptionMetadata.js +4 -0
- package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm2015/lib/CategoryAxisBaseDescription.js +23 -23
- package/esm2015/lib/CategoryChartDescription.js +130 -130
- package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm2015/lib/CategoryXAxisDescription.js +32 -32
- package/esm2015/lib/CategoryYAxisDescription.js +32 -32
- package/esm2015/lib/DataPieBaseChartDescription.js +107 -107
- package/esm2015/lib/DataPieChartDescription.js +35 -35
- package/esm2015/lib/FinancialChartDescription.js +176 -176
- package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
- package/esm2015/lib/NumericAxisBaseDescription.js +83 -83
- package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm2015/lib/RadialBaseChartDescription.js +215 -183
- package/esm2015/lib/RadialBaseChartDescriptionMetadata.js +4 -0
- package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
- package/esm2015/lib/TimeXAxisDescription.js +12 -12
- package/esm2015/lib/XYChartDescription.js +215 -183
- package/esm2015/lib/XYChartDescriptionMetadata.js +4 -0
- package/esm5/lib/AxisDescription.js +187 -139
- package/esm5/lib/AxisDescriptionMetadata.js +4 -0
- package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
- package/esm5/lib/CategoryAxisBaseDescription.js +23 -23
- package/esm5/lib/CategoryChartDescription.js +130 -130
- package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
- package/esm5/lib/CategoryXAxisDescription.js +32 -32
- package/esm5/lib/CategoryYAxisDescription.js +32 -32
- package/esm5/lib/DataPieBaseChartDescription.js +107 -107
- package/esm5/lib/DataPieChartDescription.js +35 -35
- package/esm5/lib/FinancialChartDescription.js +176 -176
- package/esm5/lib/NumericAngleAxisDescription.js +6 -6
- package/esm5/lib/NumericAxisBaseDescription.js +83 -83
- package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
- package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
- package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
- package/esm5/lib/RadialBaseChartDescription.js +231 -183
- package/esm5/lib/RadialBaseChartDescriptionMetadata.js +4 -0
- package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
- package/esm5/lib/TimeAxisBaseDescription.js +24 -24
- package/esm5/lib/TimeXAxisDescription.js +12 -12
- package/esm5/lib/XYChartDescription.js +231 -183
- package/esm5/lib/XYChartDescriptionMetadata.js +4 -0
- package/fesm2015/igniteui-angular-core.js +1354 -1246
- package/fesm5/igniteui-angular-core.js +1402 -1246
- package/lib/AxisDescription.d.ts +60 -48
- package/lib/CategoryAngleAxisDescription.d.ts +7 -7
- package/lib/CategoryAxisBaseDescription.d.ts +8 -8
- package/lib/CategoryChartDescription.d.ts +45 -45
- package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
- package/lib/CategoryXAxisDescription.d.ts +11 -11
- package/lib/CategoryYAxisDescription.d.ts +11 -11
- package/lib/DataPieBaseChartDescription.d.ts +38 -38
- package/lib/DataPieChartDescription.d.ts +12 -12
- package/lib/FinancialChartDescription.d.ts +61 -61
- package/lib/NumericAngleAxisDescription.d.ts +2 -2
- package/lib/NumericAxisBaseDescription.d.ts +28 -28
- package/lib/NumericRadiusAxisDescription.d.ts +2 -2
- package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
- package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
- package/lib/RadialBaseChartDescription.d.ts +77 -65
- package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
- package/lib/TimeAxisBaseDescription.d.ts +8 -8
- package/lib/TimeXAxisDescription.d.ts +4 -4
- package/lib/XYChartDescription.d.ts +77 -65
- package/package.json +4 -5
package/lib/AxisDescription.d.ts
CHANGED
|
@@ -10,61 +10,61 @@ export declare abstract class AxisDescription extends Description {
|
|
|
10
10
|
protected get_type(): string;
|
|
11
11
|
get type(): string;
|
|
12
12
|
constructor();
|
|
13
|
-
private
|
|
13
|
+
private b6;
|
|
14
14
|
get formatLabelRef(): string;
|
|
15
15
|
set formatLabelRef(a: string);
|
|
16
|
-
private
|
|
16
|
+
private co;
|
|
17
17
|
get title(): string;
|
|
18
18
|
set title(a: string);
|
|
19
|
-
private
|
|
19
|
+
private cm;
|
|
20
20
|
get stroke(): string;
|
|
21
21
|
set stroke(a: string);
|
|
22
|
-
private
|
|
22
|
+
private b3;
|
|
23
23
|
get actualStroke(): string;
|
|
24
24
|
set actualStroke(a: string);
|
|
25
|
-
private
|
|
25
|
+
private ay;
|
|
26
26
|
get strokeThickness(): number;
|
|
27
27
|
set strokeThickness(a: number);
|
|
28
28
|
private l;
|
|
29
29
|
get strokeDashArray(): number[];
|
|
30
30
|
set strokeDashArray(a: number[]);
|
|
31
|
-
private
|
|
31
|
+
private cl;
|
|
32
32
|
get strip(): string;
|
|
33
33
|
set strip(a: string);
|
|
34
|
-
private
|
|
34
|
+
private ch;
|
|
35
35
|
get majorStroke(): string;
|
|
36
36
|
set majorStroke(a: string);
|
|
37
|
-
private
|
|
37
|
+
private b1;
|
|
38
38
|
get actualMajorStroke(): string;
|
|
39
39
|
set actualMajorStroke(a: string);
|
|
40
|
-
private
|
|
40
|
+
private aw;
|
|
41
41
|
get majorStrokeThickness(): number;
|
|
42
42
|
set majorStrokeThickness(a: number);
|
|
43
43
|
private j;
|
|
44
44
|
get majorStrokeDashArray(): number[];
|
|
45
45
|
set majorStrokeDashArray(a: number[]);
|
|
46
|
-
private
|
|
46
|
+
private ci;
|
|
47
47
|
get minorStroke(): string;
|
|
48
48
|
set minorStroke(a: string);
|
|
49
|
-
private
|
|
49
|
+
private b2;
|
|
50
50
|
get actualMinorStroke(): string;
|
|
51
51
|
set actualMinorStroke(a: string);
|
|
52
|
-
private
|
|
52
|
+
private ax;
|
|
53
53
|
get minorStrokeThickness(): number;
|
|
54
54
|
set minorStrokeThickness(a: number);
|
|
55
55
|
private k;
|
|
56
56
|
get minorStrokeDashArray(): number[];
|
|
57
57
|
set minorStrokeDashArray(a: number[]);
|
|
58
|
-
private
|
|
58
|
+
private cn;
|
|
59
59
|
get tickStroke(): string;
|
|
60
60
|
set tickStroke(a: string);
|
|
61
|
-
private
|
|
61
|
+
private a0;
|
|
62
62
|
get tickStrokeThickness(): number;
|
|
63
63
|
set tickStrokeThickness(a: number);
|
|
64
64
|
private m;
|
|
65
65
|
get tickStrokeDashArray(): number[];
|
|
66
66
|
set tickStrokeDashArray(a: number[]);
|
|
67
|
-
private
|
|
67
|
+
private az;
|
|
68
68
|
get tickLength(): number;
|
|
69
69
|
set tickLength(a: number);
|
|
70
70
|
private v;
|
|
@@ -85,16 +85,16 @@ export declare abstract class AxisDescription extends Description {
|
|
|
85
85
|
private ab;
|
|
86
86
|
get useEnhancedIntervalManagement(): boolean;
|
|
87
87
|
set useEnhancedIntervalManagement(a: boolean);
|
|
88
|
-
private
|
|
88
|
+
private bx;
|
|
89
89
|
get enhancedIntervalMinimumCharacters(): number;
|
|
90
90
|
set enhancedIntervalMinimumCharacters(a: number);
|
|
91
91
|
private t;
|
|
92
92
|
get enhancedIntervalPreferMoreCategoryLabels(): boolean;
|
|
93
93
|
set enhancedIntervalPreferMoreCategoryLabels(a: boolean);
|
|
94
|
-
private
|
|
94
|
+
private ce;
|
|
95
95
|
get labelTextColor(): string;
|
|
96
96
|
set labelTextColor(a: string);
|
|
97
|
-
private
|
|
97
|
+
private cd;
|
|
98
98
|
get labelLocation(): string;
|
|
99
99
|
set labelLocation(a: string);
|
|
100
100
|
private x;
|
|
@@ -106,115 +106,127 @@ export declare abstract class AxisDescription extends Description {
|
|
|
106
106
|
private ap;
|
|
107
107
|
get labelExtent(): number;
|
|
108
108
|
set labelExtent(a: number);
|
|
109
|
+
private as;
|
|
110
|
+
get labelMaximumExtent(): number;
|
|
111
|
+
set labelMaximumExtent(a: number);
|
|
112
|
+
private at;
|
|
113
|
+
get labelMaximumExtentPercentage(): number;
|
|
114
|
+
set labelMaximumExtentPercentage(a: number);
|
|
109
115
|
private ar;
|
|
110
116
|
get labelLeftMargin(): number;
|
|
111
117
|
set labelLeftMargin(a: number);
|
|
112
|
-
private
|
|
118
|
+
private au;
|
|
113
119
|
get labelRightMargin(): number;
|
|
114
120
|
set labelRightMargin(a: number);
|
|
115
|
-
private
|
|
121
|
+
private av;
|
|
116
122
|
get labelTopMargin(): number;
|
|
117
123
|
set labelTopMargin(a: number);
|
|
118
124
|
private ao;
|
|
119
125
|
get labelBottomMargin(): number;
|
|
120
126
|
set labelBottomMargin(a: number);
|
|
121
|
-
private
|
|
127
|
+
private cc;
|
|
122
128
|
get labelHorizontalAlignment(): string;
|
|
123
129
|
set labelHorizontalAlignment(a: string);
|
|
124
|
-
private
|
|
130
|
+
private cf;
|
|
125
131
|
get labelVerticalAlignment(): string;
|
|
126
132
|
set labelVerticalAlignment(a: string);
|
|
127
|
-
private
|
|
133
|
+
private b5;
|
|
128
134
|
get crossingAxisRef(): string;
|
|
129
135
|
set crossingAxisRef(a: string);
|
|
130
|
-
private
|
|
136
|
+
private bz;
|
|
131
137
|
get crossingValue(): any;
|
|
132
138
|
set crossingValue(a: any);
|
|
133
|
-
private
|
|
139
|
+
private cu;
|
|
134
140
|
get titlePosition(): string;
|
|
135
141
|
set titlePosition(a: string);
|
|
136
|
-
private
|
|
142
|
+
private cv;
|
|
137
143
|
get titleTextColor(): string;
|
|
138
144
|
set titleTextColor(a: string);
|
|
139
|
-
private
|
|
145
|
+
private ct;
|
|
140
146
|
get titleLocation(): string;
|
|
141
147
|
set titleLocation(a: string);
|
|
142
148
|
private aa;
|
|
143
149
|
get titleShowFirstLabel(): boolean;
|
|
144
150
|
set titleShowFirstLabel(a: boolean);
|
|
145
|
-
private
|
|
151
|
+
private a1;
|
|
146
152
|
get titleAngle(): number;
|
|
147
153
|
set titleAngle(a: number);
|
|
148
|
-
private
|
|
154
|
+
private a3;
|
|
149
155
|
get titleExtent(): number;
|
|
150
156
|
set titleExtent(a: number);
|
|
151
|
-
private
|
|
157
|
+
private a6;
|
|
158
|
+
get titleMaximumExtent(): number;
|
|
159
|
+
set titleMaximumExtent(a: number);
|
|
160
|
+
private a7;
|
|
161
|
+
get titleMaximumExtentPercentage(): number;
|
|
162
|
+
set titleMaximumExtentPercentage(a: number);
|
|
163
|
+
private a5;
|
|
152
164
|
get titleLeftMargin(): number;
|
|
153
165
|
set titleLeftMargin(a: number);
|
|
154
|
-
private
|
|
166
|
+
private a8;
|
|
155
167
|
get titleRightMargin(): number;
|
|
156
168
|
set titleRightMargin(a: number);
|
|
157
|
-
private
|
|
169
|
+
private a9;
|
|
158
170
|
get titleTopMargin(): number;
|
|
159
171
|
set titleTopMargin(a: number);
|
|
160
|
-
private
|
|
172
|
+
private a2;
|
|
161
173
|
get titleBottomMargin(): number;
|
|
162
174
|
set titleBottomMargin(a: number);
|
|
163
|
-
private
|
|
175
|
+
private cs;
|
|
164
176
|
get titleHorizontalAlignment(): string;
|
|
165
177
|
set titleHorizontalAlignment(a: string);
|
|
166
|
-
private
|
|
178
|
+
private cw;
|
|
167
179
|
get titleVerticalAlignment(): string;
|
|
168
180
|
set titleVerticalAlignment(a: string);
|
|
169
181
|
private h;
|
|
170
182
|
get annotations(): AxisAnnotationDescription[];
|
|
171
183
|
set annotations(a: AxisAnnotationDescription[]);
|
|
172
|
-
private
|
|
184
|
+
private b4;
|
|
173
185
|
get coercionMethodsRef(): string;
|
|
174
186
|
set coercionMethodsRef(a: string);
|
|
175
187
|
private u;
|
|
176
188
|
get expectFunctions(): boolean;
|
|
177
189
|
set expectFunctions(a: boolean);
|
|
178
|
-
private
|
|
190
|
+
private cb;
|
|
179
191
|
get labelFormat(): string;
|
|
180
192
|
set labelFormat(a: string);
|
|
181
193
|
private i;
|
|
182
194
|
get labelFormatSpecifiers(): FormatSpecifierDescription[];
|
|
183
195
|
set labelFormatSpecifiers(a: FormatSpecifierDescription[]);
|
|
184
|
-
private
|
|
196
|
+
private cj;
|
|
185
197
|
get rangeChangedRef(): string;
|
|
186
198
|
set rangeChangedRef(a: string);
|
|
187
|
-
private
|
|
199
|
+
private ck;
|
|
188
200
|
get renderRequestedRef(): string;
|
|
189
201
|
set renderRequestedRef(a: string);
|
|
190
|
-
private
|
|
202
|
+
private b7;
|
|
191
203
|
get label(): string;
|
|
192
204
|
set label(a: string);
|
|
193
|
-
private
|
|
205
|
+
private b8;
|
|
194
206
|
get labelFontFamily(): string;
|
|
195
207
|
set labelFontFamily(a: string);
|
|
196
208
|
private aq;
|
|
197
209
|
get labelFontSize(): number;
|
|
198
210
|
set labelFontSize(a: number);
|
|
199
|
-
private
|
|
211
|
+
private ca;
|
|
200
212
|
get labelFontWeight(): string;
|
|
201
213
|
set labelFontWeight(a: string);
|
|
202
|
-
private
|
|
214
|
+
private b9;
|
|
203
215
|
get labelFontStyle(): string;
|
|
204
216
|
set labelFontStyle(a: string);
|
|
205
|
-
private
|
|
217
|
+
private cp;
|
|
206
218
|
get titleFontFamily(): string;
|
|
207
219
|
set titleFontFamily(a: string);
|
|
208
|
-
private
|
|
220
|
+
private a4;
|
|
209
221
|
get titleFontSize(): number;
|
|
210
222
|
set titleFontSize(a: number);
|
|
211
|
-
private
|
|
223
|
+
private cr;
|
|
212
224
|
get titleFontWeight(): string;
|
|
213
225
|
set titleFontWeight(a: string);
|
|
214
|
-
private
|
|
226
|
+
private cq;
|
|
215
227
|
get titleFontStyle(): string;
|
|
216
228
|
set titleFontStyle(a: string);
|
|
217
|
-
private
|
|
229
|
+
private cg;
|
|
218
230
|
get labelVisibility(): string;
|
|
219
231
|
set labelVisibility(a: string);
|
|
220
232
|
}
|
|
@@ -7,25 +7,25 @@ export declare class CategoryAngleAxisDescription extends CategoryAxisBaseDescri
|
|
|
7
7
|
static $t: Type;
|
|
8
8
|
protected get_type(): string;
|
|
9
9
|
constructor();
|
|
10
|
-
private
|
|
10
|
+
private ef;
|
|
11
11
|
get startAngleOffset(): number;
|
|
12
12
|
set startAngleOffset(a: number);
|
|
13
|
-
private
|
|
13
|
+
private em;
|
|
14
14
|
get labelMode(): string;
|
|
15
15
|
set labelMode(a: string);
|
|
16
|
-
private
|
|
16
|
+
private ed;
|
|
17
17
|
get interval(): number;
|
|
18
18
|
set interval(a: number);
|
|
19
|
-
private
|
|
19
|
+
private eb;
|
|
20
20
|
get actualInterval(): number;
|
|
21
21
|
set actualInterval(a: number);
|
|
22
|
-
private
|
|
22
|
+
private ee;
|
|
23
23
|
get minorInterval(): number;
|
|
24
24
|
set minorInterval(a: number);
|
|
25
|
-
private
|
|
25
|
+
private ec;
|
|
26
26
|
get actualMinorInterval(): number;
|
|
27
27
|
set actualMinorInterval(a: number);
|
|
28
|
-
private
|
|
28
|
+
private el;
|
|
29
29
|
get actualIntervalChangeRef(): string;
|
|
30
30
|
set actualIntervalChangeRef(a: string);
|
|
31
31
|
}
|
|
@@ -7,28 +7,28 @@ export declare abstract class CategoryAxisBaseDescription extends AxisDescriptio
|
|
|
7
7
|
static $t: Type;
|
|
8
8
|
protected get_type(): string;
|
|
9
9
|
constructor();
|
|
10
|
-
private
|
|
10
|
+
private d7;
|
|
11
11
|
get dataSourceRef(): string;
|
|
12
12
|
set dataSourceRef(a: string);
|
|
13
|
-
private
|
|
13
|
+
private d5;
|
|
14
14
|
get itemsCount(): number;
|
|
15
15
|
set itemsCount(a: number);
|
|
16
|
-
private
|
|
16
|
+
private dx;
|
|
17
17
|
get gap(): number;
|
|
18
18
|
set gap(a: number);
|
|
19
|
-
private
|
|
19
|
+
private dy;
|
|
20
20
|
get maximumGap(): number;
|
|
21
21
|
set maximumGap(a: number);
|
|
22
|
-
private
|
|
22
|
+
private dz;
|
|
23
23
|
get minimumGapSize(): number;
|
|
24
24
|
set minimumGapSize(a: number);
|
|
25
|
-
private
|
|
25
|
+
private d0;
|
|
26
26
|
get overlap(): number;
|
|
27
27
|
set overlap(a: number);
|
|
28
|
-
private
|
|
28
|
+
private dv;
|
|
29
29
|
get useClusteringMode(): boolean;
|
|
30
30
|
set useClusteringMode(a: boolean);
|
|
31
|
-
private
|
|
31
|
+
private d8;
|
|
32
32
|
get itemsCountChangeRef(): string;
|
|
33
33
|
set itemsCountChangeRef(a: string);
|
|
34
34
|
}
|
|
@@ -5,141 +5,141 @@ import { Type } from "./type";
|
|
|
5
5
|
*/
|
|
6
6
|
export declare class CategoryChartDescription extends XYChartDescription {
|
|
7
7
|
static $t: Type;
|
|
8
|
-
private
|
|
8
|
+
private y0;
|
|
9
9
|
get tooltipTemplateRef(): string;
|
|
10
10
|
set tooltipTemplateRef(a: string);
|
|
11
|
-
private
|
|
11
|
+
private y5;
|
|
12
12
|
get width(): string;
|
|
13
13
|
set width(a: string);
|
|
14
|
-
private
|
|
14
|
+
private yy;
|
|
15
15
|
get height(): string;
|
|
16
16
|
set height(a: string);
|
|
17
|
-
private
|
|
17
|
+
private yw;
|
|
18
18
|
get background(): string;
|
|
19
19
|
set background(a: string);
|
|
20
20
|
protected get_type(): string;
|
|
21
21
|
constructor();
|
|
22
|
-
private
|
|
22
|
+
private yp;
|
|
23
23
|
get transitionInDuration(): number;
|
|
24
24
|
set transitionInDuration(a: number);
|
|
25
|
-
private
|
|
25
|
+
private yq;
|
|
26
26
|
get transitionOutDuration(): number;
|
|
27
27
|
set transitionOutDuration(a: number);
|
|
28
|
-
private
|
|
28
|
+
private y1;
|
|
29
29
|
get transitionInEasingFunctionRef(): string;
|
|
30
30
|
set transitionInEasingFunctionRef(a: string);
|
|
31
|
-
private
|
|
31
|
+
private y4;
|
|
32
32
|
get transitionOutEasingFunctionRef(): string;
|
|
33
33
|
set transitionOutEasingFunctionRef(a: string);
|
|
34
|
-
private
|
|
34
|
+
private yx;
|
|
35
35
|
get chartType(): string;
|
|
36
36
|
set chartType(a: string);
|
|
37
|
-
private
|
|
37
|
+
private yz;
|
|
38
38
|
get markerCollisionAvoidance(): string;
|
|
39
39
|
set markerCollisionAvoidance(a: string);
|
|
40
|
-
private
|
|
40
|
+
private w7;
|
|
41
41
|
get isSplineShapePartOfRange(): boolean;
|
|
42
42
|
set isSplineShapePartOfRange(a: boolean);
|
|
43
|
-
private
|
|
43
|
+
private w8;
|
|
44
44
|
get isTransitionInEnabled(): boolean;
|
|
45
45
|
set isTransitionInEnabled(a: boolean);
|
|
46
|
-
private
|
|
46
|
+
private y2;
|
|
47
47
|
get transitionInMode(): string;
|
|
48
48
|
set transitionInMode(a: string);
|
|
49
|
-
private
|
|
49
|
+
private y3;
|
|
50
50
|
get transitionInSpeedType(): string;
|
|
51
51
|
set transitionInSpeedType(a: string);
|
|
52
|
-
private
|
|
52
|
+
private xu;
|
|
53
53
|
get xAxisInterval(): number;
|
|
54
54
|
set xAxisInterval(a: number);
|
|
55
|
-
private
|
|
55
|
+
private xx;
|
|
56
56
|
get xAxisMinorInterval(): number;
|
|
57
57
|
set xAxisMinorInterval(a: number);
|
|
58
|
-
private
|
|
58
|
+
private xt;
|
|
59
59
|
get xAxisGap(): number;
|
|
60
60
|
set xAxisGap(a: number);
|
|
61
|
-
private
|
|
61
|
+
private xw;
|
|
62
62
|
get xAxisMinimumGapSize(): number;
|
|
63
63
|
set xAxisMinimumGapSize(a: number);
|
|
64
|
-
private
|
|
64
|
+
private xv;
|
|
65
65
|
get xAxisMaximumGap(): number;
|
|
66
66
|
set xAxisMaximumGap(a: number);
|
|
67
|
-
private
|
|
67
|
+
private xy;
|
|
68
68
|
get xAxisOverlap(): number;
|
|
69
69
|
set xAxisOverlap(a: number);
|
|
70
|
-
private
|
|
70
|
+
private x4;
|
|
71
71
|
get yAxisInterval(): number;
|
|
72
72
|
set yAxisInterval(a: number);
|
|
73
|
-
private
|
|
73
|
+
private yv;
|
|
74
74
|
get autoMarginAndAngleUpdateMode(): string;
|
|
75
75
|
set autoMarginAndAngleUpdateMode(a: string);
|
|
76
|
-
private
|
|
76
|
+
private w9;
|
|
77
77
|
get shouldAutoExpandMarginForInitialLabels(): boolean;
|
|
78
78
|
set shouldAutoExpandMarginForInitialLabels(a: boolean);
|
|
79
|
-
private
|
|
79
|
+
private xa;
|
|
80
80
|
get shouldConsiderAutoRotationForInitialLabels(): boolean;
|
|
81
81
|
set shouldConsiderAutoRotationForInitialLabels(a: boolean);
|
|
82
|
-
private
|
|
82
|
+
private xr;
|
|
83
83
|
get autoExpandMarginExtraPadding(): number;
|
|
84
84
|
set autoExpandMarginExtraPadding(a: number);
|
|
85
|
-
private
|
|
85
|
+
private xs;
|
|
86
86
|
get autoExpandMarginMaximumValue(): number;
|
|
87
87
|
set autoExpandMarginMaximumValue(a: number);
|
|
88
|
-
private
|
|
88
|
+
private xe;
|
|
89
89
|
get yAxisFavorLabellingScaleEnd(): boolean;
|
|
90
90
|
set yAxisFavorLabellingScaleEnd(a: boolean);
|
|
91
|
-
private
|
|
91
|
+
private xb;
|
|
92
92
|
get xAxisEnhancedIntervalPreferMoreCategoryLabels(): boolean;
|
|
93
93
|
set xAxisEnhancedIntervalPreferMoreCategoryLabels(a: boolean);
|
|
94
|
-
private
|
|
94
|
+
private xd;
|
|
95
95
|
get yAxisEnhancedIntervalPreferMoreCategoryLabels(): boolean;
|
|
96
96
|
set yAxisEnhancedIntervalPreferMoreCategoryLabels(a: boolean);
|
|
97
|
-
private
|
|
97
|
+
private y6;
|
|
98
98
|
get yAxisAutoRangeBufferMode(): string;
|
|
99
99
|
set yAxisAutoRangeBufferMode(a: string);
|
|
100
|
-
private
|
|
100
|
+
private xf;
|
|
101
101
|
get yAxisIsLogarithmic(): boolean;
|
|
102
102
|
set yAxisIsLogarithmic(a: boolean);
|
|
103
|
-
private
|
|
103
|
+
private yr;
|
|
104
104
|
get yAxisLogarithmBase(): number;
|
|
105
105
|
set yAxisLogarithmBase(a: number);
|
|
106
|
-
private
|
|
106
|
+
private x6;
|
|
107
107
|
get yAxisMinimumValue(): number;
|
|
108
108
|
set yAxisMinimumValue(a: number);
|
|
109
|
-
private
|
|
109
|
+
private x5;
|
|
110
110
|
get yAxisMaximumValue(): number;
|
|
111
111
|
set yAxisMaximumValue(a: number);
|
|
112
|
-
private
|
|
112
|
+
private x7;
|
|
113
113
|
get yAxisMinorInterval(): number;
|
|
114
114
|
set yAxisMinorInterval(a: number);
|
|
115
|
-
private
|
|
115
|
+
private w1;
|
|
116
116
|
get negativeBrushes(): string[];
|
|
117
117
|
set negativeBrushes(a: string[]);
|
|
118
|
-
private
|
|
118
|
+
private w2;
|
|
119
119
|
get negativeOutlines(): string[];
|
|
120
120
|
set negativeOutlines(a: string[]);
|
|
121
|
-
private
|
|
121
|
+
private xc;
|
|
122
122
|
get yAxisAbbreviateLargeNumbers(): boolean;
|
|
123
123
|
set yAxisAbbreviateLargeNumbers(a: boolean);
|
|
124
|
-
private
|
|
124
|
+
private xz;
|
|
125
125
|
get xAxisZoomMaximumCategoryRange(): number;
|
|
126
126
|
set xAxisZoomMaximumCategoryRange(a: number);
|
|
127
|
-
private
|
|
127
|
+
private x0;
|
|
128
128
|
get xAxisZoomMaximumItemSpan(): number;
|
|
129
129
|
set xAxisZoomMaximumItemSpan(a: number);
|
|
130
|
-
private
|
|
130
|
+
private x1;
|
|
131
131
|
get xAxisZoomToCategoryRange(): number;
|
|
132
132
|
set xAxisZoomToCategoryRange(a: number);
|
|
133
|
-
private
|
|
133
|
+
private x2;
|
|
134
134
|
get xAxisZoomToCategoryStart(): number;
|
|
135
135
|
set xAxisZoomToCategoryStart(a: number);
|
|
136
|
-
private
|
|
136
|
+
private x3;
|
|
137
137
|
get xAxisZoomToItemSpan(): number;
|
|
138
138
|
set xAxisZoomToItemSpan(a: number);
|
|
139
|
-
private
|
|
139
|
+
private w5;
|
|
140
140
|
get isCategoryHighlightingEnabled(): boolean;
|
|
141
141
|
set isCategoryHighlightingEnabled(a: boolean);
|
|
142
|
-
private
|
|
142
|
+
private w6;
|
|
143
143
|
get isItemHighlightingEnabled(): boolean;
|
|
144
144
|
set isItemHighlightingEnabled(a: boolean);
|
|
145
145
|
}
|
|
@@ -7,28 +7,28 @@ export declare class CategoryDateTimeXAxisDescription extends TimeAxisBaseDescri
|
|
|
7
7
|
static $t: Type;
|
|
8
8
|
protected get_type(): string;
|
|
9
9
|
constructor();
|
|
10
|
-
private
|
|
10
|
+
private er;
|
|
11
11
|
get unevenlySpacedLabels(): boolean;
|
|
12
12
|
set unevenlySpacedLabels(a: boolean);
|
|
13
|
-
private
|
|
13
|
+
private e3;
|
|
14
14
|
get displayType(): string;
|
|
15
15
|
set displayType(a: string);
|
|
16
|
-
private
|
|
16
|
+
private ev;
|
|
17
17
|
get interval(): number;
|
|
18
18
|
set interval(a: number);
|
|
19
|
-
private
|
|
19
|
+
private et;
|
|
20
20
|
get actualInterval(): number;
|
|
21
21
|
set actualInterval(a: number);
|
|
22
|
-
private
|
|
22
|
+
private ew;
|
|
23
23
|
get minorInterval(): number;
|
|
24
24
|
set minorInterval(a: number);
|
|
25
|
-
private
|
|
25
|
+
private eu;
|
|
26
26
|
get actualMinorInterval(): number;
|
|
27
27
|
set actualMinorInterval(a: number);
|
|
28
|
-
private
|
|
28
|
+
private e1;
|
|
29
29
|
get actualIntervalChangeRef(): string;
|
|
30
30
|
set actualIntervalChangeRef(a: string);
|
|
31
|
-
private
|
|
31
|
+
private e2;
|
|
32
32
|
get actualMinorIntervalChangeRef(): string;
|
|
33
33
|
set actualMinorIntervalChangeRef(a: string);
|
|
34
34
|
}
|
|
@@ -7,37 +7,37 @@ export declare class CategoryXAxisDescription extends CategoryAxisBaseDescriptio
|
|
|
7
7
|
static $t: Type;
|
|
8
8
|
protected get_type(): string;
|
|
9
9
|
constructor();
|
|
10
|
-
private
|
|
10
|
+
private ef;
|
|
11
11
|
get zoomMaximumCategoryRange(): number;
|
|
12
12
|
set zoomMaximumCategoryRange(a: number);
|
|
13
|
-
private
|
|
13
|
+
private eg;
|
|
14
14
|
get zoomMaximumItemSpan(): number;
|
|
15
15
|
set zoomMaximumItemSpan(a: number);
|
|
16
|
-
private
|
|
16
|
+
private eh;
|
|
17
17
|
get zoomToCategoryRange(): number;
|
|
18
18
|
set zoomToCategoryRange(a: number);
|
|
19
|
-
private
|
|
19
|
+
private ei;
|
|
20
20
|
get zoomToCategoryStart(): number;
|
|
21
21
|
set zoomToCategoryStart(a: number);
|
|
22
|
-
private
|
|
22
|
+
private ej;
|
|
23
23
|
get zoomToItemSpan(): number;
|
|
24
24
|
set zoomToItemSpan(a: number);
|
|
25
|
-
private
|
|
25
|
+
private ed;
|
|
26
26
|
get interval(): number;
|
|
27
27
|
set interval(a: number);
|
|
28
|
-
private
|
|
28
|
+
private eb;
|
|
29
29
|
get actualInterval(): number;
|
|
30
30
|
set actualInterval(a: number);
|
|
31
|
-
private
|
|
31
|
+
private ee;
|
|
32
32
|
get minorInterval(): number;
|
|
33
33
|
set minorInterval(a: number);
|
|
34
|
-
private
|
|
34
|
+
private ec;
|
|
35
35
|
get actualMinorInterval(): number;
|
|
36
36
|
set actualMinorInterval(a: number);
|
|
37
|
-
private
|
|
37
|
+
private et;
|
|
38
38
|
get actualIntervalChangeRef(): string;
|
|
39
39
|
set actualIntervalChangeRef(a: string);
|
|
40
|
-
private
|
|
40
|
+
private eu;
|
|
41
41
|
get actualMinorIntervalChangeRef(): string;
|
|
42
42
|
set actualMinorIntervalChangeRef(a: string);
|
|
43
43
|
}
|
|
@@ -7,37 +7,37 @@ export declare class CategoryYAxisDescription extends CategoryAxisBaseDescriptio
|
|
|
7
7
|
static $t: Type;
|
|
8
8
|
protected get_type(): string;
|
|
9
9
|
constructor();
|
|
10
|
-
private
|
|
10
|
+
private ed;
|
|
11
11
|
get interval(): number;
|
|
12
12
|
set interval(a: number);
|
|
13
|
-
private
|
|
13
|
+
private eb;
|
|
14
14
|
get actualInterval(): number;
|
|
15
15
|
set actualInterval(a: number);
|
|
16
|
-
private
|
|
16
|
+
private ee;
|
|
17
17
|
get minorInterval(): number;
|
|
18
18
|
set minorInterval(a: number);
|
|
19
|
-
private
|
|
19
|
+
private ec;
|
|
20
20
|
get actualMinorInterval(): number;
|
|
21
21
|
set actualMinorInterval(a: number);
|
|
22
|
-
private
|
|
22
|
+
private ef;
|
|
23
23
|
get zoomMaximumCategoryRange(): number;
|
|
24
24
|
set zoomMaximumCategoryRange(a: number);
|
|
25
|
-
private
|
|
25
|
+
private eg;
|
|
26
26
|
get zoomMaximumItemSpan(): number;
|
|
27
27
|
set zoomMaximumItemSpan(a: number);
|
|
28
|
-
private
|
|
28
|
+
private eh;
|
|
29
29
|
get zoomToCategoryRange(): number;
|
|
30
30
|
set zoomToCategoryRange(a: number);
|
|
31
|
-
private
|
|
31
|
+
private ei;
|
|
32
32
|
get zoomToCategoryStart(): number;
|
|
33
33
|
set zoomToCategoryStart(a: number);
|
|
34
|
-
private
|
|
34
|
+
private ej;
|
|
35
35
|
get zoomToItemSpan(): number;
|
|
36
36
|
set zoomToItemSpan(a: number);
|
|
37
|
-
private
|
|
37
|
+
private et;
|
|
38
38
|
get actualIntervalChangeRef(): string;
|
|
39
39
|
set actualIntervalChangeRef(a: string);
|
|
40
|
-
private
|
|
40
|
+
private eu;
|
|
41
41
|
get actualMinorIntervalChangeRef(): string;
|
|
42
42
|
set actualMinorIntervalChangeRef(a: string);
|
|
43
43
|
}
|