@progress/kendo-angular-gauges 24.2.2 → 25.0.0-develop.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/fesm2022/progress-kendo-angular-gauges.mjs +139 -139
- package/index.d.ts +1989 -13
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/arc-gauge/arc-center-template.directive.d.ts +0 -28
- package/arc-gauge/arc-gauge.component.d.ts +0 -87
- package/arc-gauge/arc-gauge.directives.d.ts +0 -11
- package/arc-gauge/arc-gauge.module.d.ts +0 -38
- package/arc-gauge/color.component.d.ts +0 -55
- package/arc-gauge/colors.component.d.ts +0 -60
- package/arc-gauge/gauge-area.component.d.ts +0 -37
- package/arc-gauge/labels.component.d.ts +0 -38
- package/arc-gauge/scale.component.d.ts +0 -62
- package/base-components/collection-item.component.d.ts +0 -20
- package/base-components/collection.component.d.ts +0 -25
- package/base-components/gauge-area.component.d.ts +0 -38
- package/base-components/gauge.component.d.ts +0 -105
- package/base-components/labels.component.d.ts +0 -61
- package/base-components/range.component.d.ts +0 -30
- package/base-components/scale.component.d.ts +0 -28
- package/base-components/settings.component.d.ts +0 -21
- package/base-components.d.ts +0 -12
- package/circular-gauge/center-template.directive.d.ts +0 -27
- package/circular-gauge/circular-gauge.component.d.ts +0 -43
- package/circular-gauge/circular-gauge.directives.d.ts +0 -9
- package/circular-gauge/circular-gauge.module.d.ts +0 -36
- package/circular-gauge/gauge-area.component.d.ts +0 -28
- package/circular-gauge/labels.component.d.ts +0 -35
- package/circular-gauge/scale.component.d.ts +0 -36
- package/directives.d.ts +0 -52
- package/gauges.module.d.ts +0 -61
- package/linear-gauge/gauge-area.component.d.ts +0 -25
- package/linear-gauge/labels.component.d.ts +0 -26
- package/linear-gauge/linear-gauge.component.d.ts +0 -47
- package/linear-gauge/linear-gauge.directives.d.ts +0 -12
- package/linear-gauge/linear-gauge.module.d.ts +0 -40
- package/linear-gauge/pointer.component.d.ts +0 -54
- package/linear-gauge/pointers.component.d.ts +0 -53
- package/linear-gauge/range.component.d.ts +0 -29
- package/linear-gauge/ranges.component.d.ts +0 -61
- package/linear-gauge/scale.component.d.ts +0 -49
- package/package-metadata.d.ts +0 -9
- package/radial-gauge/gauge-area.component.d.ts +0 -32
- package/radial-gauge/labels.component.d.ts +0 -31
- package/radial-gauge/pointer.component.d.ts +0 -42
- package/radial-gauge/pointers.component.d.ts +0 -56
- package/radial-gauge/radial-gauge.component.d.ts +0 -49
- package/radial-gauge/radial-gauge.directives.d.ts +0 -12
- package/radial-gauge/radial-gauge.module.d.ts +0 -40
- package/radial-gauge/range.component.d.ts +0 -27
- package/radial-gauge/ranges.component.d.ts +0 -61
- package/radial-gauge/scale.component.d.ts +0 -49
- package/services/collection-changes.service.d.ts +0 -13
- package/services/configuration.service.d.ts +0 -24
- package/services/theme.service.d.ts +0 -15
- package/services.d.ts +0 -7
- package/types/arc-scale.interface.d.ts +0 -34
- package/types/border.interface.d.ts +0 -23
- package/types/cap.interface.d.ts +0 -18
- package/types/circular-gauge-scale.interface.d.ts +0 -14
- package/types/color-range.interface.d.ts +0 -25
- package/types/dash-type.interface.d.ts +0 -8
- package/types/gauge-area.interface.d.ts +0 -32
- package/types/labels.interface.d.ts +0 -57
- package/types/line-cap.d.ts +0 -8
- package/types/line.interface.d.ts +0 -27
- package/types/linear-pointer-shape.d.ts +0 -8
- package/types/linear-pointer.interface.d.ts +0 -41
- package/types/linear-scale.interface.d.ts +0 -32
- package/types/margin.interface.d.ts +0 -25
- package/types/padding.interface.d.ts +0 -25
- package/types/radial-label-position.d.ts +0 -8
- package/types/radial-labels.interface.d.ts +0 -16
- package/types/radial-pointer.interface.d.ts +0 -29
- package/types/radial-scale.interface.d.ts +0 -34
- package/types/range.interface.d.ts +0 -25
- package/types/scale.interface.d.ts +0 -51
- package/types/ticks.interface.d.ts +0 -25
- package/types.d.ts +0 -26
package/index.d.ts
CHANGED
|
@@ -2,16 +2,1992 @@
|
|
|
2
2
|
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
5
|
+
import * as i0 from '@angular/core';
|
|
6
|
+
import { SimpleChange, OnChanges, AfterContentInit, AfterContentChecked, OnDestroy, QueryList, AfterViewChecked, OnInit, ElementRef, Renderer2, NgZone, TemplateRef, ChangeDetectorRef } from '@angular/core';
|
|
7
|
+
import { IntlService } from '@progress/kendo-angular-intl';
|
|
8
|
+
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
+
import { ImageExportOptions, SVGExportOptions, Group } from '@progress/kendo-drawing';
|
|
10
|
+
import { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
declare class ConfigurationService {
|
|
16
|
+
options: any;
|
|
17
|
+
hasChanges: boolean;
|
|
18
|
+
valueChange: boolean;
|
|
19
|
+
copyChanges(prefix: string, changes: {
|
|
20
|
+
[propertyName: string]: SimpleChange;
|
|
21
|
+
}): void;
|
|
22
|
+
read(): any;
|
|
23
|
+
readValues(): any;
|
|
24
|
+
readValue(): any;
|
|
25
|
+
set(field: string, value: any): void;
|
|
26
|
+
optionContext(field: string): any;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationService, never>;
|
|
28
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationService>;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
declare class CollectionChangesService {
|
|
35
|
+
hasChanges: boolean;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollectionChangesService, never>;
|
|
37
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CollectionChangesService>;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
declare class ThemeService {
|
|
44
|
+
options: any;
|
|
45
|
+
read(): any;
|
|
46
|
+
protected load(): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
48
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Represents the dash type of a line.
|
|
53
|
+
*/
|
|
54
|
+
type DashType = 'dash' | 'dashDot' | 'dot' | 'longDash' | 'longDashDot' | 'longDashDotDot' | 'solid';
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Represents the appearance settings for the border lines.
|
|
58
|
+
*/
|
|
59
|
+
interface Border {
|
|
60
|
+
/**
|
|
61
|
+
* Sets the color of the border line.
|
|
62
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
63
|
+
*/
|
|
64
|
+
color?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Sets the dash type of the border line.
|
|
67
|
+
*/
|
|
68
|
+
dashType?: DashType;
|
|
69
|
+
/**
|
|
70
|
+
* Sets the width of the border line in pixels.
|
|
71
|
+
*/
|
|
72
|
+
width?: number;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Represents the margin settings for each side.
|
|
77
|
+
*/
|
|
78
|
+
interface Margin {
|
|
79
|
+
/**
|
|
80
|
+
* Sets the top margin in pixels.
|
|
81
|
+
*/
|
|
82
|
+
top?: number;
|
|
83
|
+
/**
|
|
84
|
+
* Sets the right margin in pixels.
|
|
85
|
+
*/
|
|
86
|
+
right?: number;
|
|
87
|
+
/**
|
|
88
|
+
* Sets the bottom margin in pixels.
|
|
89
|
+
*/
|
|
90
|
+
bottom?: number;
|
|
91
|
+
/**
|
|
92
|
+
* Sets the left margin in pixels.
|
|
93
|
+
*/
|
|
94
|
+
left?: number;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Represents the padding settings for each side.
|
|
99
|
+
*/
|
|
100
|
+
interface Padding {
|
|
101
|
+
/**
|
|
102
|
+
* Sets the top padding in pixels.
|
|
103
|
+
*/
|
|
104
|
+
top?: number;
|
|
105
|
+
/**
|
|
106
|
+
* Sets the right padding in pixels.
|
|
107
|
+
*/
|
|
108
|
+
right?: number;
|
|
109
|
+
/**
|
|
110
|
+
* Sets the bottom padding in pixels.
|
|
111
|
+
*/
|
|
112
|
+
bottom?: number;
|
|
113
|
+
/**
|
|
114
|
+
* Sets the left padding in pixels.
|
|
115
|
+
*/
|
|
116
|
+
left?: number;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Represents the configuration of the scale labels.
|
|
121
|
+
*/
|
|
122
|
+
interface Labels {
|
|
123
|
+
/**
|
|
124
|
+
* Sets the background of the labels.
|
|
125
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
126
|
+
*/
|
|
127
|
+
background?: string;
|
|
128
|
+
/**
|
|
129
|
+
* Sets the border of the labels.
|
|
130
|
+
*/
|
|
131
|
+
border?: Border;
|
|
132
|
+
/**
|
|
133
|
+
* Sets the color of the labels.
|
|
134
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
135
|
+
*/
|
|
136
|
+
color?: string;
|
|
137
|
+
/**
|
|
138
|
+
* Sets the font of the labels.
|
|
139
|
+
*/
|
|
140
|
+
font?: string;
|
|
141
|
+
/**
|
|
142
|
+
* Sets the format that displays the labels.
|
|
143
|
+
* Uses the IntlService [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method.
|
|
144
|
+
*/
|
|
145
|
+
format?: string;
|
|
146
|
+
/**
|
|
147
|
+
* Sets the margin of the labels.
|
|
148
|
+
*/
|
|
149
|
+
margin?: number | Margin;
|
|
150
|
+
/**
|
|
151
|
+
* Sets the padding of the labels.
|
|
152
|
+
*/
|
|
153
|
+
padding?: number | Padding;
|
|
154
|
+
/**
|
|
155
|
+
* Sets the function which returns the label content.
|
|
156
|
+
*
|
|
157
|
+
* The available fields in the function argument are:
|
|
158
|
+
*
|
|
159
|
+
* - `value`—The value of the label.
|
|
160
|
+
* @param {any} e - The parameters for the content callback.
|
|
161
|
+
* @returns {string} - Returns the label string that will be displayed.
|
|
162
|
+
*/
|
|
163
|
+
content?: (e: any) => string;
|
|
164
|
+
/**
|
|
165
|
+
* Sets the visibility of the labels.
|
|
166
|
+
*/
|
|
167
|
+
visible?: boolean;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Represents the possible positions of the RadialGauge labels.
|
|
172
|
+
*/
|
|
173
|
+
type RadialLabelPosition = 'inside' | 'outside';
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Represents the labels configuration of the Gauge.
|
|
177
|
+
*/
|
|
178
|
+
interface RadialLabels extends Labels {
|
|
179
|
+
/**
|
|
180
|
+
* Sets the position of the labels.
|
|
181
|
+
* This property determines where the labels will be placed relative to the radial gauge.
|
|
182
|
+
*/
|
|
183
|
+
position?: RadialLabelPosition;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Represents the options for the scale ticks.
|
|
188
|
+
*/
|
|
189
|
+
interface Ticks {
|
|
190
|
+
/**
|
|
191
|
+
* Defines the color of the ticks. Accepts a valid CSS color string, including `hex` and `rgb`.
|
|
192
|
+
*/
|
|
193
|
+
color?: string;
|
|
194
|
+
/**
|
|
195
|
+
* Sets the size of the ticks. This sets the length of the line in pixels that shows the tick on the scale.
|
|
196
|
+
*/
|
|
197
|
+
size?: number;
|
|
198
|
+
/**
|
|
199
|
+
* Determines if the ticks are visible.
|
|
200
|
+
*/
|
|
201
|
+
visible?: boolean;
|
|
202
|
+
/**
|
|
203
|
+
* Sets the width of the ticks in pixels.
|
|
204
|
+
*/
|
|
205
|
+
width?: number;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Represents the scale options of the Gauge.
|
|
210
|
+
*/
|
|
211
|
+
interface Scale {
|
|
212
|
+
/**
|
|
213
|
+
* Sets the scale labels.
|
|
214
|
+
*/
|
|
215
|
+
labels?: Labels;
|
|
216
|
+
/**
|
|
217
|
+
* Sets the major scale ticks.
|
|
218
|
+
*/
|
|
219
|
+
majorTicks?: Ticks;
|
|
220
|
+
/**
|
|
221
|
+
* Sets the minor scale ticks.
|
|
222
|
+
*/
|
|
223
|
+
minorTicks?: Ticks;
|
|
224
|
+
/**
|
|
225
|
+
* Specifies the minimum value of the scale.
|
|
226
|
+
*/
|
|
227
|
+
min?: number;
|
|
228
|
+
/**
|
|
229
|
+
* Specifies the maximum value of the scale.
|
|
230
|
+
*/
|
|
231
|
+
max?: number;
|
|
232
|
+
/**
|
|
233
|
+
* Defines the interval between minor divisions.
|
|
234
|
+
*/
|
|
235
|
+
minorUnit?: number;
|
|
236
|
+
/**
|
|
237
|
+
* Defines the interval between major divisions.
|
|
238
|
+
*/
|
|
239
|
+
majorUnit?: number;
|
|
240
|
+
/**
|
|
241
|
+
* Reverses the scale direction.
|
|
242
|
+
*/
|
|
243
|
+
reverse?: boolean;
|
|
244
|
+
/**
|
|
245
|
+
* Specifies the width of the range indicators.
|
|
246
|
+
*/
|
|
247
|
+
rangeSize?: number;
|
|
248
|
+
/**
|
|
249
|
+
* Sets the default color of the ranges.
|
|
250
|
+
*/
|
|
251
|
+
rangePlaceholderColor?: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* Represents the cap style of a line.
|
|
256
|
+
*/
|
|
257
|
+
type LineCap = 'butt' | 'round' | 'square';
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Represents the scale options of the Gauge.
|
|
261
|
+
*/
|
|
262
|
+
interface ArcScale extends Scale {
|
|
263
|
+
/**
|
|
264
|
+
* Sets the scale labels configuration.
|
|
265
|
+
*/
|
|
266
|
+
labels?: RadialLabels;
|
|
267
|
+
/**
|
|
268
|
+
* Sets the distance between the range indicators and the ticks in pixels.
|
|
269
|
+
*/
|
|
270
|
+
rangeDistance?: number;
|
|
271
|
+
/**
|
|
272
|
+
* Sets the `lineCap` style of the ranges.
|
|
273
|
+
*/
|
|
274
|
+
rangeLineCap?: LineCap;
|
|
275
|
+
/**
|
|
276
|
+
* Sets the starting angle of the Gauge in degrees.
|
|
277
|
+
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
|
|
278
|
+
*/
|
|
279
|
+
startAngle?: number;
|
|
280
|
+
/**
|
|
281
|
+
* Sets the ending angle of the Gauge in degrees.
|
|
282
|
+
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
|
|
283
|
+
*/
|
|
284
|
+
endAngle?: number;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Represents the configuration options for the RadialGauge pointer cap.
|
|
289
|
+
*/
|
|
290
|
+
interface Cap {
|
|
291
|
+
/**
|
|
292
|
+
* Sets the color of the cap.
|
|
293
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
294
|
+
*/
|
|
295
|
+
color?: string;
|
|
296
|
+
/**
|
|
297
|
+
* Sets the size of the cap as a percentage from 0 to 1.
|
|
298
|
+
*/
|
|
299
|
+
size?: number;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Represents the color range configuration.
|
|
304
|
+
*/
|
|
305
|
+
interface ColorRange {
|
|
306
|
+
/**
|
|
307
|
+
* Sets the color of the range. Accepts valid CSS color strings, including hex and rgb.
|
|
308
|
+
*/
|
|
309
|
+
color?: string;
|
|
310
|
+
/**
|
|
311
|
+
* Sets the opacity of the range.
|
|
312
|
+
*/
|
|
313
|
+
opacity?: number;
|
|
314
|
+
/**
|
|
315
|
+
* Sets the range start value.
|
|
316
|
+
*/
|
|
317
|
+
from?: number;
|
|
318
|
+
/**
|
|
319
|
+
* Sets the range end value.
|
|
320
|
+
*/
|
|
321
|
+
to?: number;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Represents the scale options of the Gauge.
|
|
326
|
+
*/
|
|
327
|
+
interface CircularGaugeScale extends ArcScale {
|
|
328
|
+
/**
|
|
329
|
+
* @hidden
|
|
330
|
+
*/
|
|
331
|
+
endAngle?: number;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Represents the configuration options for the Gauge area.
|
|
336
|
+
* Controls the entire visible area of the Gauge.
|
|
337
|
+
*/
|
|
338
|
+
interface GaugeArea {
|
|
339
|
+
/**
|
|
340
|
+
* Sets the background of the Gauge area. Accepts valid CSS color strings, including hex and rgb.
|
|
341
|
+
*/
|
|
342
|
+
background?: string;
|
|
343
|
+
/**
|
|
344
|
+
* Sets the border of the Gauge area.
|
|
345
|
+
*/
|
|
346
|
+
border?: Border;
|
|
347
|
+
/**
|
|
348
|
+
* Sets the height of the Gauge area in pixels.
|
|
349
|
+
*/
|
|
350
|
+
height?: number;
|
|
351
|
+
/**
|
|
352
|
+
* Sets the margin of the Gauge area.
|
|
353
|
+
*/
|
|
354
|
+
margin?: number | Margin;
|
|
355
|
+
/**
|
|
356
|
+
* Sets the width of the Gauge area in pixels.
|
|
357
|
+
*/
|
|
358
|
+
width?: number;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* Represents the scale line options.
|
|
363
|
+
*/
|
|
364
|
+
interface Line {
|
|
365
|
+
/**
|
|
366
|
+
* Sets the color of the lines.
|
|
367
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
368
|
+
*/
|
|
369
|
+
color?: string;
|
|
370
|
+
/**
|
|
371
|
+
* Sets the dash type of the line.
|
|
372
|
+
*/
|
|
373
|
+
dashType?: DashType;
|
|
374
|
+
/**
|
|
375
|
+
* Sets the visibility of the lines.
|
|
376
|
+
*/
|
|
377
|
+
visible?: boolean;
|
|
378
|
+
/**
|
|
379
|
+
* Sets the width of the line in pixels.
|
|
380
|
+
*/
|
|
381
|
+
width?: number;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Represents the shape of the pointer.
|
|
386
|
+
*/
|
|
387
|
+
type LinearPointerShape = 'barIndicator' | 'arrow';
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* Represents the configuration options for the LinearGauge pointer.
|
|
391
|
+
*/
|
|
392
|
+
interface LinearPointer {
|
|
393
|
+
/**
|
|
394
|
+
* Sets the border of the Gauge area.
|
|
395
|
+
*/
|
|
396
|
+
border?: Border;
|
|
397
|
+
/**
|
|
398
|
+
* Sets the color of the pointer.
|
|
399
|
+
* Accepts valid CSS color strings, including `hex` and `rgb`.
|
|
400
|
+
*/
|
|
401
|
+
color?: string;
|
|
402
|
+
/**
|
|
403
|
+
* Specifies the margin of the pointer.
|
|
404
|
+
*/
|
|
405
|
+
margin?: number | Margin;
|
|
406
|
+
/**
|
|
407
|
+
* Sets the opacity of the pointer.
|
|
408
|
+
*/
|
|
409
|
+
opacity?: number;
|
|
410
|
+
/**
|
|
411
|
+
* Sets the shape of the pointer.
|
|
412
|
+
*/
|
|
413
|
+
shape?: LinearPointerShape;
|
|
414
|
+
/**
|
|
415
|
+
* Specifies the size of the pointer.
|
|
416
|
+
*/
|
|
417
|
+
size?: number;
|
|
418
|
+
/**
|
|
419
|
+
* Sets the value of the pointer.
|
|
420
|
+
*/
|
|
421
|
+
value?: number;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
/**
|
|
425
|
+
* Represents the configuration for the scale ranges.
|
|
426
|
+
*/
|
|
427
|
+
interface Range {
|
|
428
|
+
/**
|
|
429
|
+
* Sets the start position of the range.
|
|
430
|
+
*/
|
|
431
|
+
from?: number;
|
|
432
|
+
/**
|
|
433
|
+
* Sets the end position of the range.
|
|
434
|
+
*/
|
|
435
|
+
to?: number;
|
|
436
|
+
/**
|
|
437
|
+
* Sets the range opacity.
|
|
438
|
+
*/
|
|
439
|
+
opacity?: number;
|
|
440
|
+
/**
|
|
441
|
+
* Sets the color of the range. Accepts valid CSS color strings, including hex and rgb.
|
|
442
|
+
*/
|
|
443
|
+
color?: string;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* Represents the scale options of the Gauge.
|
|
448
|
+
*/
|
|
449
|
+
interface LinearScale extends Scale {
|
|
450
|
+
/**
|
|
451
|
+
* Sets up the scale line.
|
|
452
|
+
*/
|
|
453
|
+
line?: Line;
|
|
454
|
+
/**
|
|
455
|
+
* Defines the ranges of the scale.
|
|
456
|
+
*/
|
|
457
|
+
ranges?: Range[];
|
|
458
|
+
/**
|
|
459
|
+
* Mirrors the scale labels and ticks.
|
|
460
|
+
* If the labels are normally on the left side of the scale,
|
|
461
|
+
* mirroring the scale renders them to the right.
|
|
462
|
+
*/
|
|
463
|
+
mirror?: boolean;
|
|
464
|
+
/**
|
|
465
|
+
* Determines if the scale is vertical
|
|
466
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/orientation)).
|
|
467
|
+
* @default true
|
|
468
|
+
*/
|
|
469
|
+
vertical?: boolean;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/**
|
|
473
|
+
* Represents the configuration options for the RadialGauge pointer.
|
|
474
|
+
*/
|
|
475
|
+
interface RadialPointer {
|
|
476
|
+
/**
|
|
477
|
+
* Defines the settings for the cap.
|
|
478
|
+
*/
|
|
479
|
+
cap?: Cap;
|
|
480
|
+
/**
|
|
481
|
+
* Sets the color of the pointer.
|
|
482
|
+
* Accepts valid CSS color strings, including `hex` and `rgb`.
|
|
483
|
+
*/
|
|
484
|
+
color?: string;
|
|
485
|
+
/**
|
|
486
|
+
* Sets the pointer length in percent based on the distance to the scale.
|
|
487
|
+
* The default length of `1` means that the pointer exactly reaches the scale.
|
|
488
|
+
* Accepts values between `0.1` and `1.5`.
|
|
489
|
+
*/
|
|
490
|
+
length?: number;
|
|
491
|
+
/**
|
|
492
|
+
* Sets the pointer value.
|
|
493
|
+
*/
|
|
494
|
+
value?: number;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* Represents the scale options of the Gauge.
|
|
499
|
+
*/
|
|
500
|
+
interface RadialScale extends Scale {
|
|
501
|
+
/**
|
|
502
|
+
* Sets up the scale labels.
|
|
503
|
+
*/
|
|
504
|
+
labels?: RadialLabels;
|
|
505
|
+
/**
|
|
506
|
+
* Defines the distance between the range indicators and the ticks.
|
|
507
|
+
*/
|
|
508
|
+
rangeDistance?: number;
|
|
509
|
+
/**
|
|
510
|
+
* Defines the ranges of the scale.
|
|
511
|
+
*/
|
|
512
|
+
ranges?: Range[];
|
|
513
|
+
/**
|
|
514
|
+
* Sets the starting angle of the gauge.
|
|
515
|
+
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
|
|
516
|
+
*/
|
|
517
|
+
startAngle?: number;
|
|
518
|
+
/**
|
|
519
|
+
* Sets the ending angle of the gauge.
|
|
520
|
+
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
|
|
521
|
+
*/
|
|
522
|
+
endAngle?: number;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* @hidden
|
|
527
|
+
*/
|
|
528
|
+
declare class CollectionItemComponent implements OnChanges {
|
|
529
|
+
configurationService: ConfigurationService;
|
|
530
|
+
collectionChangesService: CollectionChangesService;
|
|
531
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
532
|
+
ngOnChanges(changes: {
|
|
533
|
+
[propertyName: string]: SimpleChange;
|
|
534
|
+
}): void;
|
|
535
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollectionItemComponent, never>;
|
|
536
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CollectionItemComponent, never, never, {}, {}, never, never, true, never>;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* @hidden
|
|
541
|
+
*/
|
|
542
|
+
declare abstract class CollectionComponent implements AfterContentInit, AfterContentChecked, OnDestroy {
|
|
543
|
+
protected key: string;
|
|
544
|
+
protected configurationService: ConfigurationService;
|
|
545
|
+
protected collectionChangesService: CollectionChangesService;
|
|
546
|
+
children: QueryList<CollectionItemComponent>;
|
|
547
|
+
private subscription;
|
|
548
|
+
constructor(key: string, configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
549
|
+
ngOnDestroy(): void;
|
|
550
|
+
ngAfterContentInit(): void;
|
|
551
|
+
ngAfterContentChecked(): void;
|
|
552
|
+
private readItems;
|
|
553
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CollectionComponent, never>;
|
|
554
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CollectionComponent, never, never, {}, {}, never, never, true, never>;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* @hidden
|
|
559
|
+
*/
|
|
560
|
+
declare abstract class GaugeComponent implements AfterViewChecked, OnChanges, OnDestroy, OnInit {
|
|
561
|
+
protected configurationService: ConfigurationService;
|
|
562
|
+
protected themeService: ThemeService;
|
|
563
|
+
protected intlService: IntlService;
|
|
564
|
+
protected localizationService: LocalizationService;
|
|
565
|
+
protected element: ElementRef;
|
|
566
|
+
protected renderer: Renderer2;
|
|
567
|
+
protected ngZone: NgZone;
|
|
568
|
+
/**
|
|
569
|
+
* Specifies options for the Gauge area.
|
|
570
|
+
*/
|
|
571
|
+
gaugeArea: GaugeArea;
|
|
572
|
+
/**
|
|
573
|
+
* Specifies the output type.
|
|
574
|
+
*/
|
|
575
|
+
renderAs: 'canvas' | 'svg';
|
|
576
|
+
/**
|
|
577
|
+
* The maximum number of times the Gauge resizes per second.
|
|
578
|
+
* Defaults to `10`. To disable the automatic resizing, set `resizeRateLimit` to `0`.
|
|
579
|
+
*/
|
|
580
|
+
resizeRateLimit: number;
|
|
581
|
+
/**
|
|
582
|
+
* Specifies the scale options.
|
|
583
|
+
*/
|
|
584
|
+
scale: Scale;
|
|
585
|
+
/**
|
|
586
|
+
* Specifies if the changes will be animated.
|
|
587
|
+
*/
|
|
588
|
+
transitions: boolean;
|
|
589
|
+
resizeSensor: ResizeSensorComponent;
|
|
590
|
+
className: boolean;
|
|
591
|
+
protected options: any;
|
|
592
|
+
protected theme: any;
|
|
593
|
+
protected instance: any;
|
|
594
|
+
protected subscriptions: any;
|
|
595
|
+
protected redrawTimeout: any;
|
|
596
|
+
protected rtl: boolean;
|
|
597
|
+
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
598
|
+
ngOnInit(): void;
|
|
599
|
+
ngAfterViewChecked(): void;
|
|
600
|
+
protected updateCall(updateMethod: any): void;
|
|
601
|
+
protected updateOptions(): void;
|
|
602
|
+
protected setValues(): void;
|
|
603
|
+
ngOnChanges(changes: {
|
|
604
|
+
[propertyName: string]: SimpleChange;
|
|
605
|
+
}): void;
|
|
606
|
+
ngOnDestroy(): void;
|
|
607
|
+
/**
|
|
608
|
+
* Exports the Gauge as an image. The export operation is asynchronous and returns a promise.
|
|
609
|
+
*
|
|
610
|
+
* @param {ImageExportOptions} options - The parameters for the exported image.
|
|
611
|
+
* @returns {Promise<string>} - A promise that will be resolved with a PNG image that is encoded as a Data URI.
|
|
612
|
+
*/
|
|
613
|
+
exportImage(options?: ImageExportOptions): Promise<string>;
|
|
614
|
+
/**
|
|
615
|
+
* Exports the Gauge as an SVG document. The export operation is asynchronous and returns a promise.
|
|
616
|
+
*
|
|
617
|
+
* @param {SVGExportOptions} options - The parameters for the exported file.
|
|
618
|
+
* @returns {Promise<string>} - A promise that will be resolved with an SVG document that is encoded as a Data URI.
|
|
619
|
+
*/
|
|
620
|
+
exportSVG(options?: SVGExportOptions): Promise<string>;
|
|
621
|
+
/**
|
|
622
|
+
* Exports the Gauge as a Drawing `Scene`.
|
|
623
|
+
*
|
|
624
|
+
* @returns {Promise<Group>} - A promise that will be resolved with the export visual.
|
|
625
|
+
*/
|
|
626
|
+
exportVisual(): Promise<Group>;
|
|
627
|
+
/**
|
|
628
|
+
* @hidden
|
|
629
|
+
*/
|
|
630
|
+
onResize(): void;
|
|
631
|
+
/**
|
|
632
|
+
* Detects the size of the container and redraws the Gauge.
|
|
633
|
+
* Resizing is automatic unless you set the `resizeRateLimit` option to `0`.
|
|
634
|
+
*/
|
|
635
|
+
resize(): void;
|
|
636
|
+
protected abstract createInstance(element: any, options: any, theme: any, context: any): void;
|
|
637
|
+
protected init(): void;
|
|
638
|
+
protected get autoResize(): boolean;
|
|
639
|
+
protected updateSize(): void;
|
|
640
|
+
protected intlChange(): void;
|
|
641
|
+
protected rtlChange(): void;
|
|
642
|
+
protected deferredRedraw(): void;
|
|
643
|
+
protected defer(callback: any): void;
|
|
644
|
+
protected updateDirection(): void;
|
|
645
|
+
protected setDirection(): void;
|
|
646
|
+
protected get isRTL(): boolean;
|
|
647
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaugeComponent, never>;
|
|
648
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GaugeComponent, never, never, { "gaugeArea": { "alias": "gaugeArea"; "required": false; }; "renderAs": { "alias": "renderAs"; "required": false; }; "resizeRateLimit": { "alias": "resizeRateLimit"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; "transitions": { "alias": "transitions"; "required": false; }; }, {}, never, never, true, never>;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* @hidden
|
|
653
|
+
*/
|
|
654
|
+
declare abstract class SettingsComponent implements OnChanges, OnDestroy {
|
|
655
|
+
protected key: string;
|
|
656
|
+
protected configurationService?: ConfigurationService;
|
|
657
|
+
constructor(key: string, configurationService?: ConfigurationService);
|
|
658
|
+
ngOnChanges(changes: {
|
|
659
|
+
[propertyName: string]: SimpleChange;
|
|
660
|
+
}): void;
|
|
661
|
+
ngOnDestroy(): void;
|
|
662
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsComponent, never>;
|
|
663
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SettingsComponent, never, never, {}, {}, never, never, true, never>;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
/**
|
|
667
|
+
* @hidden
|
|
668
|
+
*/
|
|
669
|
+
declare class GaugeAreaComponent extends SettingsComponent implements GaugeArea {
|
|
670
|
+
protected key: string;
|
|
671
|
+
protected configurationService: ConfigurationService;
|
|
672
|
+
/**
|
|
673
|
+
* The background of the Gauge area. Accepts valid CSS color strings, including hex and rgb.
|
|
674
|
+
*/
|
|
675
|
+
background?: string;
|
|
676
|
+
/**
|
|
677
|
+
* The border of the Gauge area.
|
|
678
|
+
*/
|
|
679
|
+
border?: Border;
|
|
680
|
+
/**
|
|
681
|
+
* The height of the Gauge area.
|
|
682
|
+
*/
|
|
683
|
+
height?: number;
|
|
684
|
+
/**
|
|
685
|
+
* The margin of the Gauge area.
|
|
686
|
+
*/
|
|
687
|
+
margin?: number | Margin;
|
|
688
|
+
/**
|
|
689
|
+
* The width of the Gauge area.
|
|
690
|
+
*/
|
|
691
|
+
width?: number;
|
|
692
|
+
constructor(key: string, configurationService: ConfigurationService);
|
|
693
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaugeAreaComponent, never>;
|
|
694
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GaugeAreaComponent, never, never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "height": { "alias": "height"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* @hidden
|
|
699
|
+
*/
|
|
700
|
+
declare class LabelsComponent extends SettingsComponent implements Labels {
|
|
701
|
+
protected key: string;
|
|
702
|
+
protected configurationService: ConfigurationService;
|
|
703
|
+
/**
|
|
704
|
+
* The background of the labels.
|
|
705
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
706
|
+
*/
|
|
707
|
+
background?: string;
|
|
708
|
+
/**
|
|
709
|
+
* The border of the labels.
|
|
710
|
+
*/
|
|
711
|
+
border?: Border;
|
|
712
|
+
/**
|
|
713
|
+
* The color of the labels.
|
|
714
|
+
* Accepts valid CSS color strings, including hex and rgb.
|
|
715
|
+
*/
|
|
716
|
+
color?: string;
|
|
717
|
+
/**
|
|
718
|
+
* The font of the labels.
|
|
719
|
+
*/
|
|
720
|
+
font?: string;
|
|
721
|
+
/**
|
|
722
|
+
* The format that is used to display the labels.
|
|
723
|
+
* Uses the IntlService [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method.
|
|
724
|
+
*/
|
|
725
|
+
format?: string;
|
|
726
|
+
/**
|
|
727
|
+
* The margin of the labels.
|
|
728
|
+
*/
|
|
729
|
+
margin?: number | Margin;
|
|
730
|
+
/**
|
|
731
|
+
* The padding of the labels.
|
|
732
|
+
*/
|
|
733
|
+
padding?: number | Padding;
|
|
734
|
+
/**
|
|
735
|
+
* The function which returns the label content.
|
|
736
|
+
*
|
|
737
|
+
* The available fields in the function argument are:
|
|
738
|
+
*
|
|
739
|
+
* - `value`—The value of the label.
|
|
740
|
+
*/
|
|
741
|
+
content?: (e: any) => string;
|
|
742
|
+
/**
|
|
743
|
+
* The visibility of the labels.
|
|
744
|
+
*/
|
|
745
|
+
visible?: boolean;
|
|
746
|
+
constructor(key: string, configurationService: ConfigurationService);
|
|
747
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelsComponent, never>;
|
|
748
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LabelsComponent, never, never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "font": { "alias": "font"; "required": false; }; "format": { "alias": "format"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "content": { "alias": "content"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, true, never>;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* @hidden
|
|
753
|
+
*/
|
|
754
|
+
declare class RangeComponent extends CollectionItemComponent implements Range {
|
|
755
|
+
/**
|
|
756
|
+
* The start position of the range.
|
|
757
|
+
*/
|
|
758
|
+
from?: number;
|
|
759
|
+
/**
|
|
760
|
+
* The end position of the range.
|
|
761
|
+
*/
|
|
762
|
+
to?: number;
|
|
763
|
+
/**
|
|
764
|
+
* The range opacity.
|
|
765
|
+
*/
|
|
766
|
+
opacity?: number;
|
|
767
|
+
/**
|
|
768
|
+
* The color of the range. Accepts valid CSS color strings, including hex and rgb.
|
|
769
|
+
*/
|
|
770
|
+
color?: string;
|
|
771
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeComponent, never>;
|
|
772
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeComponent, never, never, { "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* @hidden
|
|
777
|
+
*/
|
|
778
|
+
declare class ScaleComponent extends SettingsComponent implements Scale {
|
|
779
|
+
protected key: string;
|
|
780
|
+
protected configurationService: ConfigurationService;
|
|
781
|
+
labels?: Labels;
|
|
782
|
+
majorTicks?: Ticks;
|
|
783
|
+
minorTicks?: Ticks;
|
|
784
|
+
min?: number;
|
|
785
|
+
max?: number;
|
|
786
|
+
minorUnit?: number;
|
|
787
|
+
majorUnit?: number;
|
|
788
|
+
reverse?: boolean;
|
|
789
|
+
rangeSize?: number;
|
|
790
|
+
rangePlaceholderColor?: string;
|
|
791
|
+
constructor(key: string, configurationService: ConfigurationService);
|
|
792
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScaleComponent, never>;
|
|
793
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScaleComponent, never, never, { "labels": { "alias": "labels"; "required": false; }; "majorTicks": { "alias": "majorTicks"; "required": false; }; "minorTicks": { "alias": "minorTicks"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "minorUnit": { "alias": "minorUnit"; "required": false; }; "majorUnit": { "alias": "majorUnit"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "rangeSize": { "alias": "rangeSize"; "required": false; }; "rangePlaceholderColor": { "alias": "rangePlaceholderColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
/**
|
|
797
|
+
* Represents a directive that allows customizing the center part of the `<kendo-arcgauge>` component.
|
|
798
|
+
* Use this directive to create a center template
|
|
799
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/circulargauge/center-template)).
|
|
800
|
+
*
|
|
801
|
+
* The template context provides access to the current ArcGauge value through the `value` and `color` fields.
|
|
802
|
+
*
|
|
803
|
+
* @example
|
|
804
|
+
* ```html
|
|
805
|
+
* <kendo-arcgauge [value]="value">
|
|
806
|
+
* <ng-template kendoArcGaugeCenterTemplate let-value="value" let-color="color">
|
|
807
|
+
* {{ value }}%
|
|
808
|
+
* </ng-template>
|
|
809
|
+
* </kendo-arcgauge>
|
|
810
|
+
* ```
|
|
811
|
+
*/
|
|
812
|
+
declare class ArcCenterTemplateDirective {
|
|
813
|
+
templateRef: TemplateRef<any>;
|
|
814
|
+
constructor(templateRef: TemplateRef<any>);
|
|
815
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArcCenterTemplateDirective, [{ optional: true; }]>;
|
|
816
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ArcCenterTemplateDirective, "[kendoArcGaugeCenterTemplate]", never, {}, {}, never, never, true, never>;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
/**
|
|
820
|
+
* Represents the [Kendo UI ArcGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/arcgauge).
|
|
821
|
+
*
|
|
822
|
+
* @example
|
|
823
|
+
* ```ts
|
|
824
|
+
* import { Component } from '@angular/core';
|
|
825
|
+
*
|
|
826
|
+
* @Component({
|
|
827
|
+
* selector: 'my-app',
|
|
828
|
+
* template: `
|
|
829
|
+
* <kendo-arcgauge [value]="value" [scale]="{ max: 100 }">
|
|
830
|
+
* <ng-template kendoArcGaugeCenterTemplate let-value="value">
|
|
831
|
+
* {{ value }}%
|
|
832
|
+
* </ng-template>
|
|
833
|
+
* </kendo-arcgauge>
|
|
834
|
+
* `
|
|
835
|
+
* })
|
|
836
|
+
* class AppComponent {
|
|
837
|
+
* public value: number = 10;
|
|
838
|
+
* }
|
|
839
|
+
* ```
|
|
840
|
+
*
|
|
841
|
+
* @remarks
|
|
842
|
+
* Supported children components are: {@link ArcScaleComponent}, {@link ArcLabelsComponent}, {@link ArcGaugeAreaComponent}, {@link ColorsComponent}.
|
|
843
|
+
*/
|
|
844
|
+
declare class ArcGaugeComponent extends GaugeComponent {
|
|
845
|
+
protected changeDetector: ChangeDetectorRef;
|
|
846
|
+
/**
|
|
847
|
+
* Sets the value of the gauge.
|
|
848
|
+
*/
|
|
849
|
+
value: number;
|
|
850
|
+
/**
|
|
851
|
+
* Sets the color of the value pointer. Accepts a valid CSS color string, including hex and rgb.
|
|
852
|
+
*/
|
|
853
|
+
color: string;
|
|
854
|
+
/**
|
|
855
|
+
* Sets the color ranges of the value pointer.
|
|
856
|
+
*/
|
|
857
|
+
colors: ColorRange[];
|
|
858
|
+
/**
|
|
859
|
+
* Sets the opacity of the value pointer.
|
|
860
|
+
*/
|
|
861
|
+
opacity: number;
|
|
862
|
+
/**
|
|
863
|
+
* Sets the scale options of the ArcGauge.
|
|
864
|
+
*/
|
|
865
|
+
scale: ArcScale;
|
|
866
|
+
centerTemplate: ArcCenterTemplateDirective;
|
|
867
|
+
labelElement: ElementRef;
|
|
868
|
+
className: boolean;
|
|
869
|
+
centerTemplateContext: any;
|
|
870
|
+
constructor(changeDetector: ChangeDetectorRef, configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
871
|
+
ngOnInit(): void;
|
|
872
|
+
ngAfterViewChecked(): void;
|
|
873
|
+
/**
|
|
874
|
+
* Exports the Gauge as a Drawing `Scene`.
|
|
875
|
+
*
|
|
876
|
+
* @returns A promise that resolves with the export visual.
|
|
877
|
+
*/
|
|
878
|
+
exportVisual(): Promise<Group>;
|
|
879
|
+
/**
|
|
880
|
+
* Detects the size of the container and redraws the Gauge.
|
|
881
|
+
* Resizing happens automatically unless you set the `resizeRateLimit` option to `0`.
|
|
882
|
+
*/
|
|
883
|
+
resize(): void;
|
|
884
|
+
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
885
|
+
protected updateOptions(): void;
|
|
886
|
+
protected setValues(): void;
|
|
887
|
+
protected updateElements(): void;
|
|
888
|
+
protected updateCenterTemplate(): void;
|
|
889
|
+
protected positionLabel(): void;
|
|
890
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArcGaugeComponent, never>;
|
|
891
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArcGaugeComponent, "kendo-arcgauge", ["kendoArcGauge"], { "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; "colors": { "alias": "colors"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, ["centerTemplate"], never, true, never>;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
/**
|
|
895
|
+
* Represents the configuration options of the ArcGauge area.
|
|
896
|
+
* Controls the entire visible area of the ArcGauge.
|
|
897
|
+
*
|
|
898
|
+
* @example
|
|
899
|
+
* ```ts
|
|
900
|
+
* import { Component } from '@angular/core';
|
|
901
|
+
*
|
|
902
|
+
* @Component({
|
|
903
|
+
* selector: 'my-app',
|
|
904
|
+
* template: `
|
|
905
|
+
* <kendo-arcgauge [value]="value">
|
|
906
|
+
* <kendo-arcgauge-area
|
|
907
|
+
* background="lightgray"
|
|
908
|
+
* [margin]="10">
|
|
909
|
+
* </kendo-arcgauge-area>
|
|
910
|
+
* </kendo-arcgauge>
|
|
911
|
+
* `
|
|
912
|
+
* })
|
|
913
|
+
* export class AppComponent {
|
|
914
|
+
* public value: number = 40;
|
|
915
|
+
* }
|
|
916
|
+
* ```
|
|
917
|
+
*/
|
|
918
|
+
declare class ArcGaugeAreaComponent extends GaugeAreaComponent {
|
|
919
|
+
protected configurationService: ConfigurationService;
|
|
920
|
+
constructor(configurationService: ConfigurationService);
|
|
921
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArcGaugeAreaComponent, never>;
|
|
922
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArcGaugeAreaComponent, "kendo-arcgauge-area", never, {}, {}, never, never, true, never>;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* Represents the configuration options for the scale of the ArcGauge
|
|
927
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/gauges/arcgauge/scale-options)).
|
|
928
|
+
*
|
|
929
|
+
* @example
|
|
930
|
+
* ```ts
|
|
931
|
+
* import { Component } from '@angular/core';
|
|
932
|
+
*
|
|
933
|
+
* @Component({
|
|
934
|
+
* selector: 'my-app',
|
|
935
|
+
* template: `
|
|
936
|
+
* <kendo-arcgauge [value]="value">
|
|
937
|
+
* <kendo-arcgauge-scale
|
|
938
|
+
* [startAngle]="-90"
|
|
939
|
+
* [endAngle]="90"
|
|
940
|
+
* [rangeDistance]="10">
|
|
941
|
+
* </kendo-arcgauge-scale>
|
|
942
|
+
* </kendo-arcgauge>
|
|
943
|
+
* `
|
|
944
|
+
* })
|
|
945
|
+
* export class AppComponent {
|
|
946
|
+
* public value: number = 30;
|
|
947
|
+
* }
|
|
948
|
+
* ```
|
|
949
|
+
*
|
|
950
|
+
* @remarks
|
|
951
|
+
* Supported children components are: {@link ArcLabelsComponent}
|
|
952
|
+
*/
|
|
953
|
+
declare class ArcScaleComponent extends ScaleComponent implements ArcScale {
|
|
954
|
+
protected configurationService: ConfigurationService;
|
|
955
|
+
/**
|
|
956
|
+
* Sets the scale labels configuration.
|
|
957
|
+
*/
|
|
958
|
+
labels?: RadialLabels;
|
|
959
|
+
/**
|
|
960
|
+
* Sets the distance between the scale ranges in pixels.
|
|
961
|
+
*/
|
|
962
|
+
rangeDistance?: number;
|
|
963
|
+
/**
|
|
964
|
+
* Sets the line cap style for the scale ranges.
|
|
965
|
+
*/
|
|
966
|
+
rangeLineCap?: LineCap;
|
|
967
|
+
/**
|
|
968
|
+
* Sets the start angle of the Gauge in degrees.
|
|
969
|
+
*/
|
|
970
|
+
startAngle?: number;
|
|
971
|
+
/**
|
|
972
|
+
* Sets the end angle of the Gauge in degrees.
|
|
973
|
+
*/
|
|
974
|
+
endAngle?: number;
|
|
975
|
+
constructor(configurationService: ConfigurationService);
|
|
976
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArcScaleComponent, never>;
|
|
977
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArcScaleComponent, "kendo-arcgauge-scale", never, { "labels": { "alias": "labels"; "required": false; }; "rangeDistance": { "alias": "rangeDistance"; "required": false; }; "rangeLineCap": { "alias": "rangeLineCap"; "required": false; }; "startAngle": { "alias": "startAngle"; "required": false; }; "endAngle": { "alias": "endAngle"; "required": false; }; }, {}, never, never, true, never>;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
/**
|
|
981
|
+
* Configures the configuration options for the scale labels of the RadialGauge.
|
|
982
|
+
*
|
|
983
|
+
* @example
|
|
984
|
+
* ```html
|
|
985
|
+
* <kendo-radialgauge>
|
|
986
|
+
* <kendo-radialgauge-scale>
|
|
987
|
+
* <kendo-radialgauge-scale-labels [visible]="true" [format]="'N0'">
|
|
988
|
+
* </kendo-radialgauge-scale-labels>
|
|
989
|
+
* </kendo-radialgauge-scale>
|
|
990
|
+
* </kendo-radialgauge>
|
|
991
|
+
* ```
|
|
992
|
+
*/
|
|
993
|
+
declare class RadialLabelsComponent extends LabelsComponent implements RadialLabels {
|
|
994
|
+
protected configurationService: ConfigurationService;
|
|
995
|
+
/**
|
|
996
|
+
* Sepcifies rhe position of the labels relative to the scale.
|
|
997
|
+
*/
|
|
998
|
+
position: RadialLabelPosition;
|
|
999
|
+
constructor(configurationService: ConfigurationService);
|
|
1000
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialLabelsComponent, never>;
|
|
1001
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialLabelsComponent, "kendo-radialgauge-scale-labels", never, { "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
/**
|
|
1005
|
+
* Represents the configuration options for the scale labels of the ArcGauge.
|
|
1006
|
+
*
|
|
1007
|
+
* @example
|
|
1008
|
+
* ```ts
|
|
1009
|
+
* import { Component } from '@angular/core';
|
|
1010
|
+
*
|
|
1011
|
+
* @Component({
|
|
1012
|
+
* selector: 'my-app',
|
|
1013
|
+
* template: `
|
|
1014
|
+
* <kendo-arcgauge [value]="value">
|
|
1015
|
+
* <kendo-arcgauge-scale>
|
|
1016
|
+
* <kendo-arcgauge-scale-labels
|
|
1017
|
+
* color="blue"
|
|
1018
|
+
* font="12px Arial">
|
|
1019
|
+
* </kendo-arcgauge-scale-labels>
|
|
1020
|
+
* </kendo-arcgauge-scale>
|
|
1021
|
+
* </kendo-arcgauge>
|
|
1022
|
+
* `
|
|
1023
|
+
* })
|
|
1024
|
+
* export class AppComponent {
|
|
1025
|
+
* public value: number = 50;
|
|
1026
|
+
* }
|
|
1027
|
+
* ```
|
|
1028
|
+
*/
|
|
1029
|
+
declare class ArcLabelsComponent extends RadialLabelsComponent {
|
|
1030
|
+
protected configurationService: ConfigurationService;
|
|
1031
|
+
constructor(configurationService: ConfigurationService);
|
|
1032
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArcLabelsComponent, never>;
|
|
1033
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArcLabelsComponent, "kendo-arcgauge-scale-labels", never, {}, {}, never, never, true, never>;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* Represents a collection of one or more ArcGauge colors
|
|
1038
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/arcgauge/color-ranges)).
|
|
1039
|
+
*
|
|
1040
|
+
* @example
|
|
1041
|
+
* ```ts
|
|
1042
|
+
* import { Component } from '@angular/core';
|
|
1043
|
+
*
|
|
1044
|
+
* @Component({
|
|
1045
|
+
* selector: 'my-app',
|
|
1046
|
+
* template: `
|
|
1047
|
+
* <kendo-arcgauge [value]="value">
|
|
1048
|
+
* <kendo-arcgauge-colors>
|
|
1049
|
+
* @for (item of colors; track item) {
|
|
1050
|
+
* <kendo-arcgauge-color
|
|
1051
|
+
* [from]="item.from" [to]="item.to" [color]="item.color">
|
|
1052
|
+
* </kendo-arcgauge-color>
|
|
1053
|
+
* }
|
|
1054
|
+
* </kendo-arcgauge-colors>
|
|
1055
|
+
* </kendo-arcgauge>
|
|
1056
|
+
* `
|
|
1057
|
+
* })
|
|
1058
|
+
* export class AppComponent {
|
|
1059
|
+
* public value: number = 10;
|
|
1060
|
+
*
|
|
1061
|
+
* public colors: any[] = [{
|
|
1062
|
+
* to: 25,
|
|
1063
|
+
* color: '#0058e9'
|
|
1064
|
+
* }, {
|
|
1065
|
+
* from: 25,
|
|
1066
|
+
* to: 50,
|
|
1067
|
+
* color: '#37b400'
|
|
1068
|
+
* }, {
|
|
1069
|
+
* from: 50,
|
|
1070
|
+
* to: 75,
|
|
1071
|
+
* color: '#ffc000'
|
|
1072
|
+
* }, {
|
|
1073
|
+
* from: 75,
|
|
1074
|
+
* color: '#f31700'
|
|
1075
|
+
* }];
|
|
1076
|
+
* }
|
|
1077
|
+
* ```
|
|
1078
|
+
*
|
|
1079
|
+
* @remarks
|
|
1080
|
+
* Supported children components are: {@link ColorComponent}.
|
|
1081
|
+
*/
|
|
1082
|
+
declare class ColorsComponent extends CollectionComponent {
|
|
1083
|
+
children: QueryList<CollectionItemComponent>;
|
|
1084
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1085
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorsComponent, never>;
|
|
1086
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorsComponent, "kendo-arcgauge-colors", never, {}, {}, ["children"], never, true, never>;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
/**
|
|
1090
|
+
* Represents the configuration options for an ArcGauge color item.
|
|
1091
|
+
*
|
|
1092
|
+
* @example
|
|
1093
|
+
* ```ts
|
|
1094
|
+
* import { Component } from '@angular/core';
|
|
1095
|
+
*
|
|
1096
|
+
* @Component({
|
|
1097
|
+
* selector: 'my-app',
|
|
1098
|
+
* template: `
|
|
1099
|
+
* <kendo-arcgauge [value]="value">
|
|
1100
|
+
* <kendo-arcgauge-colors>
|
|
1101
|
+
* <kendo-arcgauge-color
|
|
1102
|
+
* [from]="0"
|
|
1103
|
+
* [to]="50"
|
|
1104
|
+
* color="green">
|
|
1105
|
+
* </kendo-arcgauge-color>
|
|
1106
|
+
* </kendo-arcgauge-colors>
|
|
1107
|
+
* </kendo-arcgauge>
|
|
1108
|
+
* `
|
|
1109
|
+
* })
|
|
1110
|
+
* export class AppComponent {
|
|
1111
|
+
* public value: number = 25;
|
|
1112
|
+
* }
|
|
1113
|
+
* ```
|
|
1114
|
+
*/
|
|
1115
|
+
declare class ColorComponent extends CollectionItemComponent implements ColorRange {
|
|
1116
|
+
/**
|
|
1117
|
+
* Sets the color of the range. Accepts a valid CSS color string, including hex and rgb.
|
|
1118
|
+
*/
|
|
1119
|
+
color?: string;
|
|
1120
|
+
/**
|
|
1121
|
+
* Sets the opacity of the range.
|
|
1122
|
+
*/
|
|
1123
|
+
opacity?: number;
|
|
1124
|
+
/**
|
|
1125
|
+
* Sets the start value of the range.
|
|
1126
|
+
*/
|
|
1127
|
+
from?: number;
|
|
1128
|
+
/**
|
|
1129
|
+
* Sets the end value of the range.
|
|
1130
|
+
*/
|
|
1131
|
+
to?: number;
|
|
1132
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1133
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColorComponent, never>;
|
|
1134
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorComponent, "kendo-arcgauge-color", never, { "color": { "alias": "color"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; }, {}, never, never, true, never>;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmodules']) definition that includes the ArcGauge component and its directives.
|
|
1139
|
+
* Import the `ArcGaugeModule` into your application
|
|
1140
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
1141
|
+
* that will use the ArcGauge component.
|
|
1142
|
+
*
|
|
1143
|
+
* @example
|
|
1144
|
+
* ```typescript
|
|
1145
|
+
* import { NgModule } from '@angular/core';
|
|
1146
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1147
|
+
* import { ArcGaugeModule } from '@progress/kendo-angular-gauges';
|
|
1148
|
+
* import { AppComponent } from './app.component';
|
|
1149
|
+
*
|
|
1150
|
+
* @NgModule({
|
|
1151
|
+
* bootstrap: [AppComponent],
|
|
1152
|
+
* declarations: [AppComponent],
|
|
1153
|
+
* imports: [BrowserModule, ArcGaugeModule]
|
|
1154
|
+
* })
|
|
1155
|
+
* export class AppModule { }
|
|
1156
|
+
* ```
|
|
1157
|
+
*/
|
|
1158
|
+
declare class ArcGaugeModule {
|
|
1159
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArcGaugeModule, never>;
|
|
1160
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArcGaugeModule, never, [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent], [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent]>;
|
|
1161
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ArcGaugeModule>;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
/**
|
|
1165
|
+
* Represents the [Kendo UI LinearGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge).
|
|
1166
|
+
*
|
|
1167
|
+
* @example
|
|
1168
|
+
* ```ts
|
|
1169
|
+
* import { Component } from '@angular/core';
|
|
1170
|
+
*
|
|
1171
|
+
* _Component({
|
|
1172
|
+
* selector: 'my-app',
|
|
1173
|
+
* template: `
|
|
1174
|
+
* <kendo-lineargauge [pointer]="{ value: value }">
|
|
1175
|
+
* </kendo-lineargauge>
|
|
1176
|
+
* `
|
|
1177
|
+
* })
|
|
1178
|
+
* class AppComponent {
|
|
1179
|
+
* public value: number = 10;
|
|
1180
|
+
* }
|
|
1181
|
+
* ```
|
|
1182
|
+
*
|
|
1183
|
+
* @remarks
|
|
1184
|
+
* Supported children components are: {@link LinearScaleComponent}, {@link LinearLabelsComponent}, {@link LinearGaugeAreaComponent}, {@link LinearPointersComponent}, {@link LinearRangesComponent}.
|
|
1185
|
+
*/
|
|
1186
|
+
declare class LinearGaugeComponent extends GaugeComponent {
|
|
1187
|
+
/**
|
|
1188
|
+
* Configures the pointers of the LinearGauge.
|
|
1189
|
+
*/
|
|
1190
|
+
pointer: LinearPointer | LinearPointer[];
|
|
1191
|
+
/**
|
|
1192
|
+
* Configures the scale of the LinearGauge.
|
|
1193
|
+
*/
|
|
1194
|
+
scale: LinearScale;
|
|
1195
|
+
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
1196
|
+
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
1197
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeComponent, never>;
|
|
1198
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeComponent, "kendo-lineargauge", ["kendoLinearGauge"], { "pointer": { "alias": "pointer"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, never, never, true, never>;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* Represents the configuration options for the LinearGauge area.
|
|
1203
|
+
* This component controls the entire visible area of the LinearGauge.
|
|
1204
|
+
*
|
|
1205
|
+
* @example
|
|
1206
|
+
* ```html
|
|
1207
|
+
* <kendo-lineargauge>
|
|
1208
|
+
* <kendo-lineargauge-area background="lightblue" [border]="{ width: 2 }">
|
|
1209
|
+
* </kendo-lineargauge-area>
|
|
1210
|
+
* </kendo-lineargauge>
|
|
1211
|
+
* ```
|
|
1212
|
+
*/
|
|
1213
|
+
declare class LinearGaugeAreaComponent extends GaugeAreaComponent {
|
|
1214
|
+
protected configurationService: ConfigurationService;
|
|
1215
|
+
constructor(configurationService: ConfigurationService);
|
|
1216
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeAreaComponent, never>;
|
|
1217
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeAreaComponent, "kendo-lineargauge-area", never, {}, {}, never, never, true, never>;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
/**
|
|
1221
|
+
* Represents the configuration options for the scale of the LinearGauge
|
|
1222
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/scale-options)).
|
|
1223
|
+
*
|
|
1224
|
+
* @example
|
|
1225
|
+
* ```html
|
|
1226
|
+
* <kendo-lineargauge>
|
|
1227
|
+
* <kendo-lineargauge-scale [mirror]="true" [vertical]="false">
|
|
1228
|
+
* </kendo-lineargauge-scale>
|
|
1229
|
+
* </kendo-lineargauge>
|
|
1230
|
+
* ```
|
|
1231
|
+
*
|
|
1232
|
+
* @remarks
|
|
1233
|
+
* Supported children components are: {@link LinearLabelsComponent}, {@link LinearRangesComponent}.
|
|
1234
|
+
*/
|
|
1235
|
+
declare class LinearScaleComponent extends ScaleComponent implements LinearScale {
|
|
1236
|
+
protected configurationService: ConfigurationService;
|
|
1237
|
+
/**
|
|
1238
|
+
* Configures the appearance of the scale line.
|
|
1239
|
+
*/
|
|
1240
|
+
line?: Line;
|
|
1241
|
+
/**
|
|
1242
|
+
* Configures the ranges that are displayed on the scale.
|
|
1243
|
+
*/
|
|
1244
|
+
ranges?: Range[];
|
|
1245
|
+
/**
|
|
1246
|
+
* Mirrors the scale labels and ticks. When you set this option to `true`, the labels and ticks appear on the opposite side of the scale.
|
|
1247
|
+
*
|
|
1248
|
+
* @default false
|
|
1249
|
+
*/
|
|
1250
|
+
mirror?: boolean;
|
|
1251
|
+
/**
|
|
1252
|
+
* Sets the orientation of the scale. When you set this option to `false`, the scale displays horizontally.
|
|
1253
|
+
*
|
|
1254
|
+
* @default true
|
|
1255
|
+
*/
|
|
1256
|
+
vertical?: boolean;
|
|
1257
|
+
constructor(configurationService: ConfigurationService);
|
|
1258
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearScaleComponent, never>;
|
|
1259
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearScaleComponent, "kendo-lineargauge-scale", never, { "line": { "alias": "line"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "mirror": { "alias": "mirror"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, never, true, never>;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
/**
|
|
1263
|
+
* Represents the configuration options for the LinearGauge scale labels.
|
|
1264
|
+
*
|
|
1265
|
+
* @example
|
|
1266
|
+
* ```html
|
|
1267
|
+
* <kendo-lineargauge>
|
|
1268
|
+
* <kendo-lineargauge-scale>
|
|
1269
|
+
* <kendo-lineargauge-scale-labels [visible]="true" [format]="'N0'">
|
|
1270
|
+
* </kendo-lineargauge-scale-labels>
|
|
1271
|
+
* </kendo-lineargauge-scale>
|
|
1272
|
+
* </kendo-lineargauge>
|
|
1273
|
+
* ```
|
|
1274
|
+
*/
|
|
1275
|
+
declare class LinearLabelsComponent extends LabelsComponent {
|
|
1276
|
+
protected configurationService: ConfigurationService;
|
|
1277
|
+
constructor(configurationService: ConfigurationService);
|
|
1278
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearLabelsComponent, never>;
|
|
1279
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearLabelsComponent, "kendo-lineargauge-scale-labels", never, {}, {}, never, never, true, never>;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
/**
|
|
1283
|
+
* Represents a collection of one or more LinearGauge pointers
|
|
1284
|
+
* ([more information](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/multiple-pointers)).
|
|
1285
|
+
*
|
|
1286
|
+
* @example
|
|
1287
|
+
* ```ts
|
|
1288
|
+
* import { Component } from '@angular/core';
|
|
1289
|
+
*
|
|
1290
|
+
* @Component({
|
|
1291
|
+
* selector: 'my-app',
|
|
1292
|
+
* template: `
|
|
1293
|
+
* <kendo-lineargauge>
|
|
1294
|
+
* <kendo-lineargauge-pointers>
|
|
1295
|
+
* @for (pointer of pointers; track pointer) {
|
|
1296
|
+
* <kendo-lineargauge-pointer
|
|
1297
|
+
* [value]="pointer.value" [color]="pointer.color" shape="barIndicator">
|
|
1298
|
+
* </kendo-lineargauge-pointer>
|
|
1299
|
+
* }
|
|
1300
|
+
* </kendo-lineargauge-pointers>
|
|
1301
|
+
* </kendo-lineargauge>
|
|
1302
|
+
* `
|
|
1303
|
+
* })
|
|
1304
|
+
* export class AppComponent {
|
|
1305
|
+
* public pointers: any[] = [{
|
|
1306
|
+
* value: 10,
|
|
1307
|
+
* color: '#ff4500'
|
|
1308
|
+
* }, {
|
|
1309
|
+
* value: 12,
|
|
1310
|
+
* color: '#28b4c8'
|
|
1311
|
+
* }, {
|
|
1312
|
+
* value: 20,
|
|
1313
|
+
* color: '#8b0000'
|
|
1314
|
+
* }];
|
|
1315
|
+
* }
|
|
1316
|
+
* ```
|
|
1317
|
+
*
|
|
1318
|
+
* @remarks
|
|
1319
|
+
* Supported children components are: {@link LinearPointerComponent}
|
|
1320
|
+
*/
|
|
1321
|
+
declare class LinearPointersComponent extends CollectionComponent {
|
|
1322
|
+
children: QueryList<CollectionItemComponent>;
|
|
1323
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1324
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearPointersComponent, never>;
|
|
1325
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointersComponent, "kendo-lineargauge-pointers", never, {}, {}, ["children"], never, true, never>;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
/**
|
|
1329
|
+
* Represents the configuration options for a pointer item of a LinearGauge.
|
|
1330
|
+
*
|
|
1331
|
+
* @example
|
|
1332
|
+
* ```html
|
|
1333
|
+
* <kendo-lineargauge>
|
|
1334
|
+
* <kendo-lineargauge-pointers>
|
|
1335
|
+
* <kendo-lineargauge-pointer [value]="35" color="#ff4500" shape="barIndicator">
|
|
1336
|
+
* </kendo-lineargauge-pointer>
|
|
1337
|
+
* </kendo-lineargauge-pointers>
|
|
1338
|
+
* </kendo-lineargauge>
|
|
1339
|
+
* ```
|
|
1340
|
+
*/
|
|
1341
|
+
declare class LinearPointerComponent extends CollectionItemComponent implements LinearPointer {
|
|
1342
|
+
/**
|
|
1343
|
+
* Configures the border settings of the pointer.
|
|
1344
|
+
*/
|
|
1345
|
+
border?: Border;
|
|
1346
|
+
/**
|
|
1347
|
+
* Specifies the color of the pointer.
|
|
1348
|
+
*/
|
|
1349
|
+
color?: string;
|
|
1350
|
+
/**
|
|
1351
|
+
* Sets the margin of the pointer. You can set this option to a number or an object with specific margin values.
|
|
1352
|
+
*/
|
|
1353
|
+
margin?: number | Margin;
|
|
1354
|
+
/**
|
|
1355
|
+
* Controls the transparency of the pointer. The value ranges from 0 (transparent) to 1 (opaque).
|
|
1356
|
+
*/
|
|
1357
|
+
opacity?: number;
|
|
1358
|
+
/**
|
|
1359
|
+
* Defines the shape of the pointer.
|
|
1360
|
+
*/
|
|
1361
|
+
shape?: LinearPointerShape;
|
|
1362
|
+
/**
|
|
1363
|
+
* Sets the size of the pointer in pixels.
|
|
1364
|
+
*/
|
|
1365
|
+
size?: number;
|
|
1366
|
+
/**
|
|
1367
|
+
* Specifies the value that the pointer displays on the scale.
|
|
1368
|
+
*/
|
|
1369
|
+
value?: number;
|
|
1370
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1371
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearPointerComponent, never>;
|
|
1372
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointerComponent, "kendo-lineargauge-pointer", never, { "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
/**
|
|
1376
|
+
* Represents the configuration options for a scale range item of a LinearGauge.
|
|
1377
|
+
*
|
|
1378
|
+
* @example
|
|
1379
|
+
* ```html
|
|
1380
|
+
* <kendo-lineargauge>
|
|
1381
|
+
* <kendo-lineargauge-scale>
|
|
1382
|
+
* <kendo-lineargauge-scale-ranges>
|
|
1383
|
+
* @for (range of ranges; track range) {
|
|
1384
|
+
* <kendo-lineargauge-scale-range [from]="range.from" [to]="range.to" [color]="range.color">
|
|
1385
|
+
* </kendo-lineargauge-scale-range>
|
|
1386
|
+
* }
|
|
1387
|
+
* </kendo-lineargauge-scale-ranges>
|
|
1388
|
+
* </kendo-lineargauge-scale>
|
|
1389
|
+
* </kendo-lineargauge>
|
|
1390
|
+
* ```
|
|
1391
|
+
*/
|
|
1392
|
+
declare class LinearRangeComponent extends RangeComponent {
|
|
1393
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1394
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangeComponent, never>;
|
|
1395
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangeComponent, "kendo-lineargauge-scale-range", never, {}, {}, never, never, true, never>;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
/**
|
|
1399
|
+
* Represents a collection of one or more LinearGauge scale ranges
|
|
1400
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/scale-ranges)).
|
|
1401
|
+
*
|
|
1402
|
+
* You can use this component to define multiple ranges on your LinearGauge scale. Each range displays a colored segment
|
|
1403
|
+
* that highlights specific value intervals on the LinearGauge.
|
|
1404
|
+
*
|
|
1405
|
+
* @example
|
|
1406
|
+
* ```ts
|
|
1407
|
+
* import { Component } from '@angular/core';
|
|
1408
|
+
*
|
|
1409
|
+
* @Component({
|
|
1410
|
+
* selector: 'my-app',
|
|
1411
|
+
* template: `
|
|
1412
|
+
* <kendo-lineargauge>
|
|
1413
|
+
* <kendo-lineargauge-scale>
|
|
1414
|
+
* <kendo-lineargauge-scale-ranges>
|
|
1415
|
+
* @for (range of ranges; track range) {
|
|
1416
|
+
* <kendo-lineargauge-scale-range
|
|
1417
|
+
* [from]="range.from" [to]="range.to" [color]="range.color">
|
|
1418
|
+
* </kendo-lineargauge-scale-range>
|
|
1419
|
+
* }
|
|
1420
|
+
* </kendo-lineargauge-scale-ranges>
|
|
1421
|
+
* </kendo-lineargauge-scale>
|
|
1422
|
+
* </kendo-lineargauge>
|
|
1423
|
+
* `
|
|
1424
|
+
* })
|
|
1425
|
+
* export class AppComponent {
|
|
1426
|
+
* public ranges: any[] = [{
|
|
1427
|
+
* from: 0,
|
|
1428
|
+
* to: 15,
|
|
1429
|
+
* color: '#ffd246'
|
|
1430
|
+
* }, {
|
|
1431
|
+
* from: 15,
|
|
1432
|
+
* to: 30,
|
|
1433
|
+
* color: '#28b4c8'
|
|
1434
|
+
* }, {
|
|
1435
|
+
* from: 30,
|
|
1436
|
+
* to: 50,
|
|
1437
|
+
* color: '#78d237'
|
|
1438
|
+
* }];
|
|
1439
|
+
* }
|
|
1440
|
+
* ```
|
|
1441
|
+
*
|
|
1442
|
+
* @remarks
|
|
1443
|
+
* Supported children components are: {@link LinearRangeComponent}
|
|
1444
|
+
*/
|
|
1445
|
+
declare class LinearRangesComponent extends CollectionComponent {
|
|
1446
|
+
children: QueryList<CollectionItemComponent>;
|
|
1447
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1448
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangesComponent, never>;
|
|
1449
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangesComponent, "kendo-lineargauge-scale-ranges", never, {}, {}, ["children"], never, true, never>;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmodules']) definition that includes the LinearGauge component and its directives.
|
|
1454
|
+
* Import the `LinearGaugeModule` into your application
|
|
1455
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
1456
|
+
* that will use the LinearGauge component.
|
|
1457
|
+
*
|
|
1458
|
+
* @example
|
|
1459
|
+
* ```ts
|
|
1460
|
+
* import { NgModule } from '@angular/core';
|
|
1461
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1462
|
+
* import { LinearGaugeModule } from '@progress/kendo-angular-gauges';
|
|
1463
|
+
* import { AppComponent } from './app.component';
|
|
1464
|
+
*
|
|
1465
|
+
* @NgModule({
|
|
1466
|
+
* bootstrap: [AppComponent],
|
|
1467
|
+
* declarations: [AppComponent],
|
|
1468
|
+
* imports: [BrowserModule, LinearGaugeModule]
|
|
1469
|
+
* })
|
|
1470
|
+
* export class AppModule {
|
|
1471
|
+
* }
|
|
1472
|
+
* ```
|
|
1473
|
+
*/
|
|
1474
|
+
declare class LinearGaugeModule {
|
|
1475
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeModule, never>;
|
|
1476
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LinearGaugeModule, never, [typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent], [typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent]>;
|
|
1477
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LinearGaugeModule>;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
/**
|
|
1481
|
+
* Represents the [Kendo UI RadialGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge).
|
|
1482
|
+
*
|
|
1483
|
+
* @example
|
|
1484
|
+
* ```ts
|
|
1485
|
+
* import { Component } from '@angular/core';
|
|
1486
|
+
*
|
|
1487
|
+
* @Component({
|
|
1488
|
+
* selector: 'my-app',
|
|
1489
|
+
* template: `
|
|
1490
|
+
* <kendo-radialgauge [pointer]="{ value: value }">
|
|
1491
|
+
* </kendo-radialgauge>
|
|
1492
|
+
* `
|
|
1493
|
+
* })
|
|
1494
|
+
* export class AppComponent {
|
|
1495
|
+
* public value: number = 10;
|
|
1496
|
+
* }
|
|
1497
|
+
* ```
|
|
1498
|
+
*
|
|
1499
|
+
* @remarks
|
|
1500
|
+
* Supported children components are: {@link RadialGaugeAreaComponent}, {@link RadialLabelsComponent}, {@link RadialPointersComponent}, {@link RadialRangesComponent}, {@link RadialScaleComponent}.
|
|
1501
|
+
*/
|
|
1502
|
+
declare class RadialGaugeComponent extends GaugeComponent {
|
|
1503
|
+
/**
|
|
1504
|
+
* Sets the configuration of the pointers.
|
|
1505
|
+
* You can configure single or multiple pointers for the RadialGauge.
|
|
1506
|
+
*/
|
|
1507
|
+
pointer: RadialPointer | RadialPointer[];
|
|
1508
|
+
/**
|
|
1509
|
+
* Sets the configuration of the scale.
|
|
1510
|
+
* The scale defines the range, appearance, and behavior of the gauge.
|
|
1511
|
+
*/
|
|
1512
|
+
scale: RadialScale;
|
|
1513
|
+
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
1514
|
+
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
1515
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeComponent, never>;
|
|
1516
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeComponent, "kendo-radialgauge", ["kendoRadialGauge"], { "pointer": { "alias": "pointer"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, never, never, true, never>;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
/**
|
|
1520
|
+
* Represents the configuration options for the RadialGauge area.
|
|
1521
|
+
* This component controls the entire visible area of the RadialGauge.
|
|
1522
|
+
*
|
|
1523
|
+
* @example
|
|
1524
|
+
* ```ts
|
|
1525
|
+
* import { Component } from '@angular/core';
|
|
1526
|
+
*
|
|
1527
|
+
* @Component({
|
|
1528
|
+
* selector: 'my-app',
|
|
1529
|
+
* template: `
|
|
1530
|
+
* <kendo-radialgauge-area background="lightblue">
|
|
1531
|
+
* </kendo-radialgauge-area>
|
|
1532
|
+
* `
|
|
1533
|
+
* })
|
|
1534
|
+
* class AppComponent {
|
|
1535
|
+
* }
|
|
1536
|
+
* ```
|
|
1537
|
+
*/
|
|
1538
|
+
declare class RadialGaugeAreaComponent extends GaugeAreaComponent {
|
|
1539
|
+
protected configurationService: ConfigurationService;
|
|
1540
|
+
constructor(configurationService: ConfigurationService);
|
|
1541
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeAreaComponent, never>;
|
|
1542
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeAreaComponent, "kendo-radialgauge-area", never, {}, {}, never, never, true, never>;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* Represents the configuration options for the scale of a RadialGauge
|
|
1547
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge/scale-options)).
|
|
1548
|
+
*
|
|
1549
|
+
* @example
|
|
1550
|
+
* ```html
|
|
1551
|
+
* <kendo-radialgauge>
|
|
1552
|
+
* <kendo-radialgauge-scale [startAngle]="0" [endAngle]="180">
|
|
1553
|
+
* </kendo-radialgauge-scale>
|
|
1554
|
+
* </kendo-radialgauge>
|
|
1555
|
+
* ```
|
|
1556
|
+
*
|
|
1557
|
+
* @remarks
|
|
1558
|
+
* Supported children components are: {@link RadialLabelsComponent}, {@link RadialRangesComponent}
|
|
1559
|
+
*/
|
|
1560
|
+
declare class RadialScaleComponent extends ScaleComponent implements RadialScale {
|
|
1561
|
+
protected configurationService: ConfigurationService;
|
|
1562
|
+
/**
|
|
1563
|
+
* Configures the scale labels.
|
|
1564
|
+
*/
|
|
1565
|
+
labels?: RadialLabels;
|
|
1566
|
+
/**
|
|
1567
|
+
* Specifies the distance between the scale ranges and the ticks.
|
|
1568
|
+
*/
|
|
1569
|
+
rangeDistance?: number;
|
|
1570
|
+
/**
|
|
1571
|
+
* Sets the ranges of the scale.
|
|
1572
|
+
*/
|
|
1573
|
+
ranges?: Range[];
|
|
1574
|
+
/**
|
|
1575
|
+
* Specifies the start angle of the Gauge in degrees.
|
|
1576
|
+
*/
|
|
1577
|
+
startAngle?: number;
|
|
1578
|
+
/**
|
|
1579
|
+
* Specifies the end angle of the Gauge in degrees.
|
|
1580
|
+
*/
|
|
1581
|
+
endAngle?: number;
|
|
1582
|
+
constructor(configurationService: ConfigurationService);
|
|
1583
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialScaleComponent, never>;
|
|
1584
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialScaleComponent, "kendo-radialgauge-scale", never, { "labels": { "alias": "labels"; "required": false; }; "rangeDistance": { "alias": "rangeDistance"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "startAngle": { "alias": "startAngle"; "required": false; }; "endAngle": { "alias": "endAngle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
/**
|
|
1588
|
+
* Represents a collection of one or more RadialGauge pointers
|
|
1589
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge/multiple-pointers)).
|
|
1590
|
+
*
|
|
1591
|
+
* Use this component to group multiple pointer components within a RadialGauge.
|
|
1592
|
+
* Each pointer displays a specific value on the gauge.
|
|
1593
|
+
*
|
|
1594
|
+
* @example
|
|
1595
|
+
* ```ts
|
|
1596
|
+
* import { Component } from '@angular/core';
|
|
1597
|
+
*
|
|
1598
|
+
* @Component({
|
|
1599
|
+
* selector: 'my-app',
|
|
1600
|
+
* template: `
|
|
1601
|
+
* <kendo-radialgauge>
|
|
1602
|
+
* <kendo-radialgauge-pointers>
|
|
1603
|
+
* @for (pointer of pointers; track pointer) {
|
|
1604
|
+
* <kendo-radialgauge-pointer
|
|
1605
|
+
* [value]="pointer.value" [color]="pointer.color">
|
|
1606
|
+
* </kendo-radialgauge-pointer>
|
|
1607
|
+
* }
|
|
1608
|
+
* </kendo-radialgauge-pointers>
|
|
1609
|
+
* </kendo-radialgauge>
|
|
1610
|
+
* `
|
|
1611
|
+
* })
|
|
1612
|
+
* export class AppComponent {
|
|
1613
|
+
* public pointers: any[] = [{
|
|
1614
|
+
* value: 10,
|
|
1615
|
+
* color: '#ffd246'
|
|
1616
|
+
* }, {
|
|
1617
|
+
* value: 20,
|
|
1618
|
+
* color: '#28b4c8'
|
|
1619
|
+
* }, {
|
|
1620
|
+
* value: 30,
|
|
1621
|
+
* color: '#78d237'
|
|
1622
|
+
* }];
|
|
1623
|
+
* }
|
|
1624
|
+
* ```
|
|
1625
|
+
*
|
|
1626
|
+
* @remarks
|
|
1627
|
+
* Supported children components are: {@link RadialPointerComponent}
|
|
1628
|
+
*/
|
|
1629
|
+
declare class RadialPointersComponent extends CollectionComponent {
|
|
1630
|
+
children: QueryList<CollectionItemComponent>;
|
|
1631
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1632
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialPointersComponent, never>;
|
|
1633
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointersComponent, "kendo-radialgauge-pointers", never, {}, {}, ["children"], never, true, never>;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* Represents the configuration options for a pointer in the RadialGauge.
|
|
1638
|
+
*
|
|
1639
|
+
* @example
|
|
1640
|
+
* ```html
|
|
1641
|
+
* <kendo-radialgauge>
|
|
1642
|
+
* <kendo-radialgauge-pointers>
|
|
1643
|
+
* <kendo-radialgauge-pointer [value]="35" color="#ff4500" shape="barIndicator">
|
|
1644
|
+
* </kendo-radialgauge-pointer>
|
|
1645
|
+
* </kendo-radialgauge-pointers>
|
|
1646
|
+
* </kendo-radialgauge>
|
|
1647
|
+
* ```
|
|
1648
|
+
*/
|
|
1649
|
+
declare class RadialPointerComponent extends CollectionItemComponent implements RadialPointer {
|
|
1650
|
+
/**
|
|
1651
|
+
* Configures the pointer cap.
|
|
1652
|
+
*/
|
|
1653
|
+
cap?: Cap;
|
|
1654
|
+
/**
|
|
1655
|
+
* Specifies the color of the pointer.
|
|
1656
|
+
*/
|
|
1657
|
+
color?: string;
|
|
1658
|
+
/**
|
|
1659
|
+
* Sets the length of the pointer as a percentage of the scale radius.
|
|
1660
|
+
*/
|
|
1661
|
+
length?: number;
|
|
1662
|
+
/**
|
|
1663
|
+
* Sets the value of the pointer.
|
|
1664
|
+
*/
|
|
1665
|
+
value?: number;
|
|
1666
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1667
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialPointerComponent, never>;
|
|
1668
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointerComponent, "kendo-radialgauge-pointer", never, { "cap": { "alias": "cap"; "required": false; }; "color": { "alias": "color"; "required": false; }; "length": { "alias": "length"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
/**
|
|
1672
|
+
* Represents the configuration options for a range in the RadialGauge scale.
|
|
1673
|
+
*
|
|
1674
|
+
* @example
|
|
1675
|
+
* ```html
|
|
1676
|
+
* <kendo-radialgauge>
|
|
1677
|
+
* <kendo-radialgauge-scale>
|
|
1678
|
+
* <kendo-radialgauge-scale-ranges>
|
|
1679
|
+
* <kendo-radialgauge-scale-range [from]="0" [to]="50" color="red">
|
|
1680
|
+
* </kendo-radialgauge-scale-range>
|
|
1681
|
+
* </kendo-radialgauge-scale-ranges>
|
|
1682
|
+
* </kendo-radialgauge-scale>
|
|
1683
|
+
* </kendo-radialgauge>
|
|
1684
|
+
* ```
|
|
1685
|
+
*/
|
|
1686
|
+
declare class RadialRangeComponent extends RangeComponent {
|
|
1687
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1688
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialRangeComponent, never>;
|
|
1689
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialRangeComponent, "kendo-radialgauge-scale-range", never, {}, {}, never, never, true, never>;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
/**
|
|
1693
|
+
* Represents a collection of one or more RadialGauge scale ranges
|
|
1694
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge/scale-ranges)).
|
|
1695
|
+
*
|
|
1696
|
+
* Use this component to define multiple ranges on your RadialGauge scale.
|
|
1697
|
+
* Each range displays a colored segment that highlights specific value intervals.
|
|
1698
|
+
*
|
|
1699
|
+
* @example
|
|
1700
|
+
* ```ts
|
|
1701
|
+
* import { Component } from '@angular/core';
|
|
1702
|
+
*
|
|
1703
|
+
* @Component({
|
|
1704
|
+
* selector: 'my-app',
|
|
1705
|
+
* template: `
|
|
1706
|
+
* <kendo-radialgauge>
|
|
1707
|
+
* <kendo-radialgauge-scale>
|
|
1708
|
+
* <kendo-radialgauge-scale-ranges>
|
|
1709
|
+
* @for (range of ranges; track range) {
|
|
1710
|
+
* <kendo-radialgauge-scale-range
|
|
1711
|
+
* [from]="range.from" [to]="range.to" [color]="range.color">
|
|
1712
|
+
* </kendo-radialgauge-scale-range>
|
|
1713
|
+
* }
|
|
1714
|
+
* </kendo-radialgauge-scale-ranges>
|
|
1715
|
+
* </kendo-radialgauge-scale>
|
|
1716
|
+
* </kendo-radialgauge>
|
|
1717
|
+
* `
|
|
1718
|
+
* })
|
|
1719
|
+
* export class AppComponent {
|
|
1720
|
+
* public ranges: any[] = [{
|
|
1721
|
+
* from: 0,
|
|
1722
|
+
* to: 15,
|
|
1723
|
+
* color: '#ffd246'
|
|
1724
|
+
* }, {
|
|
1725
|
+
* from: 15,
|
|
1726
|
+
* to: 30,
|
|
1727
|
+
* color: '#28b4c8'
|
|
1728
|
+
* }, {
|
|
1729
|
+
* from: 30,
|
|
1730
|
+
* to: 50,
|
|
1731
|
+
* color: '#78d237'
|
|
1732
|
+
* }];
|
|
1733
|
+
* }
|
|
1734
|
+
* ```
|
|
1735
|
+
*
|
|
1736
|
+
* @remarks
|
|
1737
|
+
* Supported children components are: {@link RadialRangeComponent}
|
|
1738
|
+
*/
|
|
1739
|
+
declare class RadialRangesComponent extends CollectionComponent {
|
|
1740
|
+
children: QueryList<CollectionItemComponent>;
|
|
1741
|
+
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
1742
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialRangesComponent, never>;
|
|
1743
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadialRangesComponent, "kendo-radialgauge-scale-ranges", never, {}, {}, ["children"], never, true, never>;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
/**
|
|
1747
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmodules']) definition that includes the RadialGauge component and its directives.
|
|
1748
|
+
* Import the RadialGaugeModule into your application
|
|
1749
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
1750
|
+
* that uses the RadialGauge component.
|
|
1751
|
+
*
|
|
1752
|
+
* @example
|
|
1753
|
+
* ```ts
|
|
1754
|
+
* import { NgModule } from '@angular/core';
|
|
1755
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1756
|
+
* import { RadialGaugeModule } from '@progress/kendo-angular-gauges';
|
|
1757
|
+
* import { AppComponent } from './app.component';
|
|
1758
|
+
*
|
|
1759
|
+
* @NgModule({
|
|
1760
|
+
* bootstrap: [AppComponent],
|
|
1761
|
+
* declarations: [AppComponent],
|
|
1762
|
+
* imports: [BrowserModule, RadialGaugeModule]
|
|
1763
|
+
* })
|
|
1764
|
+
* export class AppModule {
|
|
1765
|
+
* }
|
|
1766
|
+
* ```
|
|
1767
|
+
*/
|
|
1768
|
+
declare class RadialGaugeModule {
|
|
1769
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeModule, never>;
|
|
1770
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RadialGaugeModule, never, [typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent], [typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent]>;
|
|
1771
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RadialGaugeModule>;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
/**
|
|
1775
|
+
* Represents a directive that allows customizing the center part of the `<kendo-circulargauge>` component
|
|
1776
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/circulargauge/center-template)).
|
|
1777
|
+
*
|
|
1778
|
+
* The template context provides access to the current CircularGauge value through the `value` and `color` fields.
|
|
1779
|
+
*
|
|
1780
|
+
* @example
|
|
1781
|
+
* ```html
|
|
1782
|
+
* <kendo-circulargauge [value]="value">
|
|
1783
|
+
* <ng-template kendoCircularGaugeCenterTemplate let-value="value" let-color="color">
|
|
1784
|
+
* {{ value }}%
|
|
1785
|
+
* </ng-template>
|
|
1786
|
+
* </kendo-circulargauge>
|
|
1787
|
+
* ```
|
|
1788
|
+
*/
|
|
1789
|
+
declare class CircularGaugeCenterTemplateDirective {
|
|
1790
|
+
templateRef: TemplateRef<any>;
|
|
1791
|
+
constructor(templateRef: TemplateRef<any>);
|
|
1792
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeCenterTemplateDirective, [{ optional: true; }]>;
|
|
1793
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CircularGaugeCenterTemplateDirective, "[kendoCircularGaugeCenterTemplate]", never, {}, {}, never, never, true, never>;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
/**
|
|
1797
|
+
* Represents the [Kendo UI CircularGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/circulargauge).
|
|
1798
|
+
*
|
|
1799
|
+
* @example
|
|
1800
|
+
* ```ts
|
|
1801
|
+
* import { Component } from '@angular/core';
|
|
1802
|
+
*
|
|
1803
|
+
* _@Component({
|
|
1804
|
+
* selector: 'my-app',
|
|
1805
|
+
* template: `
|
|
1806
|
+
* <kendo-circulargauge [value]="value" [scale]="{ max: 100 }">
|
|
1807
|
+
* <ng-template kendoCircularGaugeCenterTemplate let-value="value">
|
|
1808
|
+
* {{ value }}%
|
|
1809
|
+
* </ng-template>
|
|
1810
|
+
* </kendo-circulargauge>
|
|
1811
|
+
* `
|
|
1812
|
+
* })
|
|
1813
|
+
* class AppComponent {
|
|
1814
|
+
* public value: number = 10;
|
|
1815
|
+
* }
|
|
1816
|
+
* ```
|
|
1817
|
+
*
|
|
1818
|
+
* @remarks
|
|
1819
|
+
* Supported children components are: {@link CircularGaugeScaleComponent}, {@link CircularGaugeLabelsComponent}, {@link CircularGaugeAreaComponent}.
|
|
1820
|
+
*/
|
|
1821
|
+
declare class CircularGaugeComponent extends ArcGaugeComponent {
|
|
1822
|
+
/**
|
|
1823
|
+
* Specifies the scale options of the Gauge.
|
|
1824
|
+
*/
|
|
1825
|
+
scale: CircularGaugeScale;
|
|
1826
|
+
centerTemplate: CircularGaugeCenterTemplateDirective;
|
|
1827
|
+
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
1828
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeComponent, never>;
|
|
1829
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircularGaugeComponent, "kendo-circulargauge", ["kendoCircularGauge"], { "scale": { "alias": "scale"; "required": false; }; }, {}, ["centerTemplate"], never, true, never>;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
/**
|
|
1833
|
+
* Represents the configuration options of the Circular Gauge area.
|
|
1834
|
+
* Sets up the entire visible area of the CircularGauge.
|
|
1835
|
+
*
|
|
1836
|
+
* @example
|
|
1837
|
+
* ```typescript
|
|
1838
|
+
* @Component({
|
|
1839
|
+
* selector: 'my-app',
|
|
1840
|
+
* template: `
|
|
1841
|
+
* <kendo-circulargauge>
|
|
1842
|
+
* <kendo-circulargauge-area background="lightblue" margin="10">
|
|
1843
|
+
* </kendo-circulargauge-area>
|
|
1844
|
+
* </kendo-circulargauge>
|
|
1845
|
+
* `
|
|
1846
|
+
* })
|
|
1847
|
+
* export class AppComponent { }
|
|
1848
|
+
* ```
|
|
1849
|
+
*/
|
|
1850
|
+
declare class CircularGaugeAreaComponent extends ArcGaugeAreaComponent {
|
|
1851
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeAreaComponent, never>;
|
|
1852
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircularGaugeAreaComponent, "kendo-circulargauge-area", never, {}, {}, never, never, true, never>;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
/**
|
|
1856
|
+
* Represents the configuration options for the scale of the Circular Gauge
|
|
1857
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/gauges/circulargauge/scale-options)).
|
|
1858
|
+
*
|
|
1859
|
+
* @example
|
|
1860
|
+
* ```typescript
|
|
1861
|
+
* @Component({
|
|
1862
|
+
* selector: 'my-app',
|
|
1863
|
+
* template: `
|
|
1864
|
+
* <kendo-circulargauge>
|
|
1865
|
+
* <kendo-circulargauge-scale [min]="0" [max]="100">
|
|
1866
|
+
* </kendo-circulargauge-scale>
|
|
1867
|
+
* </kendo-circulargauge>
|
|
1868
|
+
* `
|
|
1869
|
+
* })
|
|
1870
|
+
* class AppComponent { }
|
|
1871
|
+
* ```
|
|
1872
|
+
*
|
|
1873
|
+
* @remarks
|
|
1874
|
+
* Supported children components are: {@link CircularGaugeLabelsComponent}
|
|
1875
|
+
*/
|
|
1876
|
+
declare class CircularGaugeScaleComponent extends ArcScaleComponent implements CircularGaugeScale {
|
|
1877
|
+
/**
|
|
1878
|
+
* @hidden
|
|
1879
|
+
*/
|
|
1880
|
+
endAngle?: number;
|
|
1881
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeScaleComponent, never>;
|
|
1882
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircularGaugeScaleComponent, "kendo-circulargauge-scale", never, {}, {}, never, never, true, never>;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
/**
|
|
1886
|
+
* Represents the configuration options for the scale labels of the Circular Gauge.
|
|
1887
|
+
*
|
|
1888
|
+
* @example
|
|
1889
|
+
* ```ts
|
|
1890
|
+
* import { Component } from '@angular/core';
|
|
1891
|
+
*
|
|
1892
|
+
* @Component({
|
|
1893
|
+
* selector: 'my-app',
|
|
1894
|
+
* template: `
|
|
1895
|
+
* <kendo-circulargauge [value]="value">
|
|
1896
|
+
* <kendo-circulargauge-scale>
|
|
1897
|
+
* <kendo-circulargauge-scale-labels
|
|
1898
|
+
* color="blue"
|
|
1899
|
+
* font="12px Arial">
|
|
1900
|
+
* </kendo-circulargauge-scale-labels>
|
|
1901
|
+
* </kendo-circulargauge-scale>
|
|
1902
|
+
* </kendo-circulargauge>
|
|
1903
|
+
* `
|
|
1904
|
+
* })
|
|
1905
|
+
* export class AppComponent {
|
|
1906
|
+
* public value: number = 75;
|
|
1907
|
+
* }
|
|
1908
|
+
* ```
|
|
1909
|
+
*/
|
|
1910
|
+
declare class CircularGaugeLabelsComponent extends ArcLabelsComponent {
|
|
1911
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeLabelsComponent, never>;
|
|
1912
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircularGaugeLabelsComponent, "kendo-circulargauge-scale-labels", never, {}, {}, never, never, true, never>;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
/**
|
|
1916
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmodules']) definition that includes the CircularGauge component and its directives.
|
|
1917
|
+
* Import the `CircularGaugeModule` into your application
|
|
1918
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
1919
|
+
* that uses the CircularGauge component.
|
|
1920
|
+
*
|
|
1921
|
+
* @example
|
|
1922
|
+
* ```ts
|
|
1923
|
+
* import { NgModule } from '@angular/core';
|
|
1924
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1925
|
+
* import { CircularGaugeModule } from '@progress/kendo-angular-gauges';
|
|
1926
|
+
* import { AppComponent } from './app.component';
|
|
1927
|
+
*
|
|
1928
|
+
* @NgModule({
|
|
1929
|
+
* bootstrap: [AppComponent],
|
|
1930
|
+
* declarations: [AppComponent],
|
|
1931
|
+
* imports: [BrowserModule, CircularGaugeModule]
|
|
1932
|
+
* })
|
|
1933
|
+
* export class AppModule { }
|
|
1934
|
+
* ```
|
|
1935
|
+
*/
|
|
1936
|
+
declare class CircularGaugeModule {
|
|
1937
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeModule, never>;
|
|
1938
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CircularGaugeModule, never, [typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent], [typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent]>;
|
|
1939
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CircularGaugeModule>;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
/**
|
|
1943
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmodules']) definition that includes all Gauge components and directives.
|
|
1944
|
+
*
|
|
1945
|
+
* Import the `GaugesModule` into your application
|
|
1946
|
+
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
1947
|
+
* that will use the Gauge components.
|
|
1948
|
+
*
|
|
1949
|
+
* @example
|
|
1950
|
+
* ```ts-no-run
|
|
1951
|
+
* import { NgModule } from '@angular/core';
|
|
1952
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
1953
|
+
* import { GaugesModule } from '@progress/kendo-angular-gauges';
|
|
1954
|
+
* import { AppComponent } from './app.component';
|
|
1955
|
+
*
|
|
1956
|
+
* _@NgModule({
|
|
1957
|
+
* bootstrap: [AppComponent],
|
|
1958
|
+
* declarations: [AppComponent],
|
|
1959
|
+
* imports: [BrowserModule, GaugesModule]
|
|
1960
|
+
* })
|
|
1961
|
+
* export class AppModule {
|
|
1962
|
+
* }
|
|
1963
|
+
* ```
|
|
1964
|
+
*/
|
|
1965
|
+
declare class GaugesModule {
|
|
1966
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GaugesModule, never>;
|
|
1967
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GaugesModule, never, [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent, typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent, typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent, typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent], [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent, typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent, typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent, typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent]>;
|
|
1968
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GaugesModule>;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
/**
|
|
1972
|
+
* Use this utility array to access all ArcGauge-related components and directives in a standalone Angular component.
|
|
1973
|
+
*/
|
|
1974
|
+
declare const KENDO_ARCGAUGE: readonly [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent];
|
|
1975
|
+
/**
|
|
1976
|
+
* Use this utility array to access all CircularGauge-related components and directives in a standalone Angular component.
|
|
1977
|
+
*/
|
|
1978
|
+
declare const KENDO_CIRCULARGAUGE: readonly [typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent];
|
|
1979
|
+
/**
|
|
1980
|
+
* Use this utility array to access all LinearGauge-related components and directives in a standalone Angular component.
|
|
1981
|
+
*/
|
|
1982
|
+
declare const KENDO_LINEARGAUGE: readonly [typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent];
|
|
1983
|
+
/**
|
|
1984
|
+
* Use this utility array to access all RadialGauge-related components and directives in a standalone Angular component.
|
|
1985
|
+
*/
|
|
1986
|
+
declare const KENDO_RADIALGAUGE: readonly [typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent];
|
|
1987
|
+
/**
|
|
1988
|
+
* Use this utility array to access all `@progress/kendo-angular-gauges`-related components and directives in a standalone Angular component.
|
|
1989
|
+
*/
|
|
1990
|
+
declare const KENDO_GAUGES: readonly [typeof ArcGaugeComponent, typeof ArcCenterTemplateDirective, typeof ArcGaugeAreaComponent, typeof ArcScaleComponent, typeof ArcLabelsComponent, typeof ColorsComponent, typeof ColorComponent, typeof CircularGaugeComponent, typeof CircularGaugeCenterTemplateDirective, typeof CircularGaugeAreaComponent, typeof CircularGaugeScaleComponent, typeof CircularGaugeLabelsComponent, typeof LinearGaugeComponent, typeof LinearGaugeAreaComponent, typeof LinearScaleComponent, typeof LinearLabelsComponent, typeof LinearPointersComponent, typeof LinearPointerComponent, typeof LinearRangeComponent, typeof LinearRangesComponent, typeof RadialGaugeComponent, typeof RadialGaugeAreaComponent, typeof RadialScaleComponent, typeof RadialLabelsComponent, typeof RadialPointersComponent, typeof RadialPointerComponent, typeof RadialRangeComponent, typeof RadialRangesComponent];
|
|
1991
|
+
|
|
1992
|
+
export { ArcCenterTemplateDirective, ArcGaugeAreaComponent, ArcGaugeComponent, ArcGaugeModule, ArcLabelsComponent, ArcScaleComponent, CircularGaugeAreaComponent, CircularGaugeCenterTemplateDirective, CircularGaugeComponent, CircularGaugeLabelsComponent, CircularGaugeModule, CircularGaugeScaleComponent, CollectionChangesService, CollectionComponent, CollectionItemComponent, ColorComponent, ColorsComponent, ConfigurationService, GaugeAreaComponent, GaugeComponent, GaugesModule, KENDO_ARCGAUGE, KENDO_CIRCULARGAUGE, KENDO_GAUGES, KENDO_LINEARGAUGE, KENDO_RADIALGAUGE, LabelsComponent, LinearGaugeAreaComponent, LinearGaugeComponent, LinearGaugeModule, LinearLabelsComponent, LinearPointerComponent, LinearPointersComponent, LinearRangeComponent, LinearRangesComponent, LinearScaleComponent, RadialGaugeAreaComponent, RadialGaugeComponent, RadialGaugeModule, RadialLabelsComponent, RadialPointerComponent, RadialPointersComponent, RadialRangeComponent, RadialRangesComponent, RadialScaleComponent, RangeComponent, ScaleComponent, SettingsComponent, ThemeService };
|
|
1993
|
+
export type { ArcScale, Border, Cap, CircularGaugeScale, ColorRange, DashType, GaugeArea, Labels, Line, LineCap, LinearPointer, LinearPointerShape, LinearScale, Margin, Padding, RadialLabelPosition, RadialLabels, RadialPointer, RadialScale, Range, Scale, Ticks };
|