@progress/kendo-angular-gauges 24.2.2 → 25.0.0-develop.2
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 +699 -229
- package/index.d.ts +2132 -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
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { LabelsComponent } from '../base-components';
|
|
6
|
-
import { ConfigurationService } from '../services';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* Represents the configuration options for the LinearGauge scale labels.
|
|
10
|
-
*
|
|
11
|
-
* @example
|
|
12
|
-
* ```html
|
|
13
|
-
* <kendo-lineargauge>
|
|
14
|
-
* <kendo-lineargauge-scale>
|
|
15
|
-
* <kendo-lineargauge-scale-labels [visible]="true" [format]="'N0'">
|
|
16
|
-
* </kendo-lineargauge-scale-labels>
|
|
17
|
-
* </kendo-lineargauge-scale>
|
|
18
|
-
* </kendo-lineargauge>
|
|
19
|
-
* ```
|
|
20
|
-
*/
|
|
21
|
-
export declare class LinearLabelsComponent extends LabelsComponent {
|
|
22
|
-
protected configurationService: ConfigurationService;
|
|
23
|
-
constructor(configurationService: ConfigurationService);
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearLabelsComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearLabelsComponent, "kendo-lineargauge-scale-labels", never, {}, {}, never, never, true, never>;
|
|
26
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgZone, ElementRef, Renderer2 } from '@angular/core';
|
|
6
|
-
import { ConfigurationService, ThemeService } from '../services';
|
|
7
|
-
import { IntlService } from '@progress/kendo-angular-intl';
|
|
8
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { LinearPointer, LinearScale } from '../types';
|
|
10
|
-
import { GaugeComponent } from '../base-components';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
/**
|
|
13
|
-
* Represents the [Kendo UI LinearGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge).
|
|
14
|
-
*
|
|
15
|
-
* @example
|
|
16
|
-
* ```ts
|
|
17
|
-
* import { Component } from '@angular/core';
|
|
18
|
-
*
|
|
19
|
-
* _Component({
|
|
20
|
-
* selector: 'my-app',
|
|
21
|
-
* template: `
|
|
22
|
-
* <kendo-lineargauge [pointer]="{ value: value }">
|
|
23
|
-
* </kendo-lineargauge>
|
|
24
|
-
* `
|
|
25
|
-
* })
|
|
26
|
-
* class AppComponent {
|
|
27
|
-
* public value: number = 10;
|
|
28
|
-
* }
|
|
29
|
-
* ```
|
|
30
|
-
*
|
|
31
|
-
* @remarks
|
|
32
|
-
* Supported children components are: {@link LinearScaleComponent}, {@link LinearLabelsComponent}, {@link LinearGaugeAreaComponent}, {@link LinearPointersComponent}, {@link LinearRangesComponent}.
|
|
33
|
-
*/
|
|
34
|
-
export declare class LinearGaugeComponent extends GaugeComponent {
|
|
35
|
-
/**
|
|
36
|
-
* Configures the pointers of the LinearGauge.
|
|
37
|
-
*/
|
|
38
|
-
pointer: LinearPointer | LinearPointer[];
|
|
39
|
-
/**
|
|
40
|
-
* Configures the scale of the LinearGauge.
|
|
41
|
-
*/
|
|
42
|
-
scale: LinearScale;
|
|
43
|
-
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
44
|
-
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearGaugeComponent, "kendo-lineargauge", ["kendoLinearGauge"], { "pointer": { "alias": "pointer"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, never, never, true, never>;
|
|
47
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
export { LinearGaugeComponent } from './linear-gauge.component';
|
|
6
|
-
export { LinearGaugeAreaComponent } from './gauge-area.component';
|
|
7
|
-
export { LinearScaleComponent } from './scale.component';
|
|
8
|
-
export { LinearLabelsComponent } from './labels.component';
|
|
9
|
-
export { LinearPointersComponent } from './pointers.component';
|
|
10
|
-
export { LinearPointerComponent } from './pointer.component';
|
|
11
|
-
export { LinearRangeComponent } from './range.component';
|
|
12
|
-
export { LinearRangesComponent } from './ranges.component';
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./linear-gauge.component";
|
|
7
|
-
import * as i2 from "./gauge-area.component";
|
|
8
|
-
import * as i3 from "./scale.component";
|
|
9
|
-
import * as i4 from "./labels.component";
|
|
10
|
-
import * as i5 from "./pointers.component";
|
|
11
|
-
import * as i6 from "./pointer.component";
|
|
12
|
-
import * as i7 from "./range.component";
|
|
13
|
-
import * as i8 from "./ranges.component";
|
|
14
|
-
/**
|
|
15
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmodules']) definition that includes the LinearGauge component and its directives.
|
|
16
|
-
* Import the `LinearGaugeModule` into your application
|
|
17
|
-
* [root module](link:site.data.urls.angular['ngmodules']#angular-modularity) or any other sub-module
|
|
18
|
-
* that will use the LinearGauge component.
|
|
19
|
-
*
|
|
20
|
-
* @example
|
|
21
|
-
* ```ts
|
|
22
|
-
* import { NgModule } from '@angular/core';
|
|
23
|
-
* import { BrowserModule } from '@angular/platform-browser';
|
|
24
|
-
* import { LinearGaugeModule } from '@progress/kendo-angular-gauges';
|
|
25
|
-
* import { AppComponent } from './app.component';
|
|
26
|
-
*
|
|
27
|
-
* @NgModule({
|
|
28
|
-
* bootstrap: [AppComponent],
|
|
29
|
-
* declarations: [AppComponent],
|
|
30
|
-
* imports: [BrowserModule, LinearGaugeModule]
|
|
31
|
-
* })
|
|
32
|
-
* export class AppModule {
|
|
33
|
-
* }
|
|
34
|
-
* ```
|
|
35
|
-
*/
|
|
36
|
-
export declare class LinearGaugeModule {
|
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearGaugeModule, never>;
|
|
38
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LinearGaugeModule, never, [typeof i1.LinearGaugeComponent, typeof i2.LinearGaugeAreaComponent, typeof i3.LinearScaleComponent, typeof i4.LinearLabelsComponent, typeof i5.LinearPointersComponent, typeof i6.LinearPointerComponent, typeof i7.LinearRangeComponent, typeof i8.LinearRangesComponent], [typeof i1.LinearGaugeComponent, typeof i2.LinearGaugeAreaComponent, typeof i3.LinearScaleComponent, typeof i4.LinearLabelsComponent, typeof i5.LinearPointersComponent, typeof i6.LinearPointerComponent, typeof i7.LinearRangeComponent, typeof i8.LinearRangesComponent]>;
|
|
39
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LinearGaugeModule>;
|
|
40
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { CollectionChangesService, ConfigurationService } from '../services';
|
|
6
|
-
import { CollectionItemComponent } from '../base-components';
|
|
7
|
-
import { LinearPointer, LinearPointerShape, Border, Margin } from '../types';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents the configuration options for a pointer item of a LinearGauge.
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```html
|
|
14
|
-
* <kendo-lineargauge>
|
|
15
|
-
* <kendo-lineargauge-pointers>
|
|
16
|
-
* <kendo-lineargauge-pointer [value]="35" color="#ff4500" shape="barIndicator">
|
|
17
|
-
* </kendo-lineargauge-pointer>
|
|
18
|
-
* </kendo-lineargauge-pointers>
|
|
19
|
-
* </kendo-lineargauge>
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
export declare class LinearPointerComponent extends CollectionItemComponent implements LinearPointer {
|
|
23
|
-
/**
|
|
24
|
-
* Configures the border settings of the pointer.
|
|
25
|
-
*/
|
|
26
|
-
border?: Border;
|
|
27
|
-
/**
|
|
28
|
-
* Specifies the color of the pointer.
|
|
29
|
-
*/
|
|
30
|
-
color?: string;
|
|
31
|
-
/**
|
|
32
|
-
* Sets the margin of the pointer. You can set this option to a number or an object with specific margin values.
|
|
33
|
-
*/
|
|
34
|
-
margin?: number | Margin;
|
|
35
|
-
/**
|
|
36
|
-
* Controls the transparency of the pointer. The value ranges from 0 (transparent) to 1 (opaque).
|
|
37
|
-
*/
|
|
38
|
-
opacity?: number;
|
|
39
|
-
/**
|
|
40
|
-
* Defines the shape of the pointer.
|
|
41
|
-
*/
|
|
42
|
-
shape?: LinearPointerShape;
|
|
43
|
-
/**
|
|
44
|
-
* Sets the size of the pointer in pixels.
|
|
45
|
-
*/
|
|
46
|
-
size?: number;
|
|
47
|
-
/**
|
|
48
|
-
* Specifies the value that the pointer displays on the scale.
|
|
49
|
-
*/
|
|
50
|
-
value?: number;
|
|
51
|
-
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
52
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearPointerComponent, never>;
|
|
53
|
-
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>;
|
|
54
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { QueryList } from '@angular/core';
|
|
6
|
-
import { CollectionComponent, CollectionItemComponent } from '../base-components';
|
|
7
|
-
import { CollectionChangesService, ConfigurationService } from '../services';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents a collection of one or more LinearGauge pointers
|
|
11
|
-
* ([more information](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/multiple-pointers)).
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```ts
|
|
15
|
-
* import { Component } from '@angular/core';
|
|
16
|
-
*
|
|
17
|
-
* @Component({
|
|
18
|
-
* selector: 'my-app',
|
|
19
|
-
* template: `
|
|
20
|
-
* <kendo-lineargauge>
|
|
21
|
-
* <kendo-lineargauge-pointers>
|
|
22
|
-
* @for (pointer of pointers; track pointer) {
|
|
23
|
-
* <kendo-lineargauge-pointer
|
|
24
|
-
* [value]="pointer.value" [color]="pointer.color" shape="barIndicator">
|
|
25
|
-
* </kendo-lineargauge-pointer>
|
|
26
|
-
* }
|
|
27
|
-
* </kendo-lineargauge-pointers>
|
|
28
|
-
* </kendo-lineargauge>
|
|
29
|
-
* `
|
|
30
|
-
* })
|
|
31
|
-
* export class AppComponent {
|
|
32
|
-
* public pointers: any[] = [{
|
|
33
|
-
* value: 10,
|
|
34
|
-
* color: '#ff4500'
|
|
35
|
-
* }, {
|
|
36
|
-
* value: 12,
|
|
37
|
-
* color: '#28b4c8'
|
|
38
|
-
* }, {
|
|
39
|
-
* value: 20,
|
|
40
|
-
* color: '#8b0000'
|
|
41
|
-
* }];
|
|
42
|
-
* }
|
|
43
|
-
* ```
|
|
44
|
-
*
|
|
45
|
-
* @remarks
|
|
46
|
-
* Supported children components are: {@link LinearPointerComponent}
|
|
47
|
-
*/
|
|
48
|
-
export declare class LinearPointersComponent extends CollectionComponent {
|
|
49
|
-
children: QueryList<CollectionItemComponent>;
|
|
50
|
-
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
51
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearPointersComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearPointersComponent, "kendo-lineargauge-pointers", never, {}, {}, ["children"], never, true, never>;
|
|
53
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { CollectionChangesService, ConfigurationService } from '../services';
|
|
6
|
-
import { RangeComponent } from '../base-components';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* Represents the configuration options for a scale range item of a LinearGauge.
|
|
10
|
-
*
|
|
11
|
-
* @example
|
|
12
|
-
* ```html
|
|
13
|
-
* <kendo-lineargauge>
|
|
14
|
-
* <kendo-lineargauge-scale>
|
|
15
|
-
* <kendo-lineargauge-scale-ranges>
|
|
16
|
-
* @for (range of ranges; track range) {
|
|
17
|
-
* <kendo-lineargauge-scale-range [from]="range.from" [to]="range.to" [color]="range.color">
|
|
18
|
-
* </kendo-lineargauge-scale-range>
|
|
19
|
-
* }
|
|
20
|
-
* </kendo-lineargauge-scale-ranges>
|
|
21
|
-
* </kendo-lineargauge-scale>
|
|
22
|
-
* </kendo-lineargauge>
|
|
23
|
-
* ```
|
|
24
|
-
*/
|
|
25
|
-
export declare class LinearRangeComponent extends RangeComponent {
|
|
26
|
-
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangeComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangeComponent, "kendo-lineargauge-scale-range", never, {}, {}, never, never, true, never>;
|
|
29
|
-
}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { QueryList } from '@angular/core';
|
|
6
|
-
import { CollectionComponent, CollectionItemComponent } from '../base-components';
|
|
7
|
-
import { CollectionChangesService, ConfigurationService } from '../services';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents a collection of one or more LinearGauge scale ranges
|
|
11
|
-
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/scale-ranges)).
|
|
12
|
-
*
|
|
13
|
-
* You can use this component to define multiple ranges on your LinearGauge scale. Each range displays a colored segment
|
|
14
|
-
* that highlights specific value intervals on the LinearGauge.
|
|
15
|
-
*
|
|
16
|
-
* @example
|
|
17
|
-
* ```ts
|
|
18
|
-
* import { Component } from '@angular/core';
|
|
19
|
-
*
|
|
20
|
-
* @Component({
|
|
21
|
-
* selector: 'my-app',
|
|
22
|
-
* template: `
|
|
23
|
-
* <kendo-lineargauge>
|
|
24
|
-
* <kendo-lineargauge-scale>
|
|
25
|
-
* <kendo-lineargauge-scale-ranges>
|
|
26
|
-
* @for (range of ranges; track range) {
|
|
27
|
-
* <kendo-lineargauge-scale-range
|
|
28
|
-
* [from]="range.from" [to]="range.to" [color]="range.color">
|
|
29
|
-
* </kendo-lineargauge-scale-range>
|
|
30
|
-
* }
|
|
31
|
-
* </kendo-lineargauge-scale-ranges>
|
|
32
|
-
* </kendo-lineargauge-scale>
|
|
33
|
-
* </kendo-lineargauge>
|
|
34
|
-
* `
|
|
35
|
-
* })
|
|
36
|
-
* export class AppComponent {
|
|
37
|
-
* public ranges: any[] = [{
|
|
38
|
-
* from: 0,
|
|
39
|
-
* to: 15,
|
|
40
|
-
* color: '#ffd246'
|
|
41
|
-
* }, {
|
|
42
|
-
* from: 15,
|
|
43
|
-
* to: 30,
|
|
44
|
-
* color: '#28b4c8'
|
|
45
|
-
* }, {
|
|
46
|
-
* from: 30,
|
|
47
|
-
* to: 50,
|
|
48
|
-
* color: '#78d237'
|
|
49
|
-
* }];
|
|
50
|
-
* }
|
|
51
|
-
* ```
|
|
52
|
-
*
|
|
53
|
-
* @remarks
|
|
54
|
-
* Supported children components are: {@link LinearRangeComponent}
|
|
55
|
-
*/
|
|
56
|
-
export declare class LinearRangesComponent extends CollectionComponent {
|
|
57
|
-
children: QueryList<CollectionItemComponent>;
|
|
58
|
-
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
59
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangesComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangesComponent, "kendo-lineargauge-scale-ranges", never, {}, {}, ["children"], never, true, never>;
|
|
61
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ScaleComponent } from '../base-components';
|
|
6
|
-
import { ConfigurationService } from '../services';
|
|
7
|
-
import { LinearScale, Line, Range } from '../types';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents the configuration options for the scale of the LinearGauge
|
|
11
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/gauges/lineargauge/scale-options)).
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```html
|
|
15
|
-
* <kendo-lineargauge>
|
|
16
|
-
* <kendo-lineargauge-scale [mirror]="true" [vertical]="false">
|
|
17
|
-
* </kendo-lineargauge-scale>
|
|
18
|
-
* </kendo-lineargauge>
|
|
19
|
-
* ```
|
|
20
|
-
*
|
|
21
|
-
* @remarks
|
|
22
|
-
* Supported children components are: {@link LinearLabelsComponent}, {@link LinearRangesComponent}.
|
|
23
|
-
*/
|
|
24
|
-
export declare class LinearScaleComponent extends ScaleComponent implements LinearScale {
|
|
25
|
-
protected configurationService: ConfigurationService;
|
|
26
|
-
/**
|
|
27
|
-
* Configures the appearance of the scale line.
|
|
28
|
-
*/
|
|
29
|
-
line?: Line;
|
|
30
|
-
/**
|
|
31
|
-
* Configures the ranges that are displayed on the scale.
|
|
32
|
-
*/
|
|
33
|
-
ranges?: Range[];
|
|
34
|
-
/**
|
|
35
|
-
* 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.
|
|
36
|
-
*
|
|
37
|
-
* @default false
|
|
38
|
-
*/
|
|
39
|
-
mirror?: boolean;
|
|
40
|
-
/**
|
|
41
|
-
* Sets the orientation of the scale. When you set this option to `false`, the scale displays horizontally.
|
|
42
|
-
*
|
|
43
|
-
* @default true
|
|
44
|
-
*/
|
|
45
|
-
vertical?: boolean;
|
|
46
|
-
constructor(configurationService: ConfigurationService);
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LinearScaleComponent, never>;
|
|
48
|
-
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>;
|
|
49
|
-
}
|
package/package-metadata.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { type PackageMetadata } from '@progress/kendo-licensing';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export declare const packageMetadata: PackageMetadata;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { GaugeAreaComponent } from '../base-components';
|
|
6
|
-
import { ConfigurationService } from '../services';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* Represents the configuration options for the RadialGauge area.
|
|
10
|
-
* This component controls the entire visible area of the RadialGauge.
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```ts
|
|
14
|
-
* import { Component } from '@angular/core';
|
|
15
|
-
*
|
|
16
|
-
* @Component({
|
|
17
|
-
* selector: 'my-app',
|
|
18
|
-
* template: `
|
|
19
|
-
* <kendo-radialgauge-area background="lightblue">
|
|
20
|
-
* </kendo-radialgauge-area>
|
|
21
|
-
* `
|
|
22
|
-
* })
|
|
23
|
-
* class AppComponent {
|
|
24
|
-
* }
|
|
25
|
-
* ```
|
|
26
|
-
*/
|
|
27
|
-
export declare class RadialGaugeAreaComponent extends GaugeAreaComponent {
|
|
28
|
-
protected configurationService: ConfigurationService;
|
|
29
|
-
constructor(configurationService: ConfigurationService);
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeAreaComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeAreaComponent, "kendo-radialgauge-area", never, {}, {}, never, never, true, never>;
|
|
32
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { LabelsComponent } from '../base-components';
|
|
6
|
-
import { ConfigurationService } from '../services';
|
|
7
|
-
import { RadialLabels, RadialLabelPosition } from '../types';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Configures the configuration options for the scale labels of the RadialGauge.
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```html
|
|
14
|
-
* <kendo-radialgauge>
|
|
15
|
-
* <kendo-radialgauge-scale>
|
|
16
|
-
* <kendo-radialgauge-scale-labels [visible]="true" [format]="'N0'">
|
|
17
|
-
* </kendo-radialgauge-scale-labels>
|
|
18
|
-
* </kendo-radialgauge-scale>
|
|
19
|
-
* </kendo-radialgauge>
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
export declare class RadialLabelsComponent extends LabelsComponent implements RadialLabels {
|
|
23
|
-
protected configurationService: ConfigurationService;
|
|
24
|
-
/**
|
|
25
|
-
* Sepcifies rhe position of the labels relative to the scale.
|
|
26
|
-
*/
|
|
27
|
-
position: RadialLabelPosition;
|
|
28
|
-
constructor(configurationService: ConfigurationService);
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadialLabelsComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialLabelsComponent, "kendo-radialgauge-scale-labels", never, { "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
|
|
31
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { CollectionChangesService, ConfigurationService } from '../services';
|
|
6
|
-
import { CollectionItemComponent } from '../base-components';
|
|
7
|
-
import { RadialPointer, Cap } from '../types';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents the configuration options for a pointer in the RadialGauge.
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```html
|
|
14
|
-
* <kendo-radialgauge>
|
|
15
|
-
* <kendo-radialgauge-pointers>
|
|
16
|
-
* <kendo-radialgauge-pointer [value]="35" color="#ff4500" shape="barIndicator">
|
|
17
|
-
* </kendo-radialgauge-pointer>
|
|
18
|
-
* </kendo-radialgauge-pointers>
|
|
19
|
-
* </kendo-radialgauge>
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
export declare class RadialPointerComponent extends CollectionItemComponent implements RadialPointer {
|
|
23
|
-
/**
|
|
24
|
-
* Configures the pointer cap.
|
|
25
|
-
*/
|
|
26
|
-
cap?: Cap;
|
|
27
|
-
/**
|
|
28
|
-
* Specifies the color of the pointer.
|
|
29
|
-
*/
|
|
30
|
-
color?: string;
|
|
31
|
-
/**
|
|
32
|
-
* Sets the length of the pointer as a percentage of the scale radius.
|
|
33
|
-
*/
|
|
34
|
-
length?: number;
|
|
35
|
-
/**
|
|
36
|
-
* Sets the value of the pointer.
|
|
37
|
-
*/
|
|
38
|
-
value?: number;
|
|
39
|
-
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadialPointerComponent, never>;
|
|
41
|
-
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>;
|
|
42
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { QueryList } from '@angular/core';
|
|
6
|
-
import { CollectionComponent, CollectionItemComponent } from '../base-components';
|
|
7
|
-
import { CollectionChangesService, ConfigurationService } from '../services';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents a collection of one or more RadialGauge pointers
|
|
11
|
-
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge/multiple-pointers)).
|
|
12
|
-
*
|
|
13
|
-
* Use this component to group multiple pointer components within a RadialGauge.
|
|
14
|
-
* Each pointer displays a specific value on the gauge.
|
|
15
|
-
*
|
|
16
|
-
* @example
|
|
17
|
-
* ```ts
|
|
18
|
-
* import { Component } from '@angular/core';
|
|
19
|
-
*
|
|
20
|
-
* @Component({
|
|
21
|
-
* selector: 'my-app',
|
|
22
|
-
* template: `
|
|
23
|
-
* <kendo-radialgauge>
|
|
24
|
-
* <kendo-radialgauge-pointers>
|
|
25
|
-
* @for (pointer of pointers; track pointer) {
|
|
26
|
-
* <kendo-radialgauge-pointer
|
|
27
|
-
* [value]="pointer.value" [color]="pointer.color">
|
|
28
|
-
* </kendo-radialgauge-pointer>
|
|
29
|
-
* }
|
|
30
|
-
* </kendo-radialgauge-pointers>
|
|
31
|
-
* </kendo-radialgauge>
|
|
32
|
-
* `
|
|
33
|
-
* })
|
|
34
|
-
* export class AppComponent {
|
|
35
|
-
* public pointers: any[] = [{
|
|
36
|
-
* value: 10,
|
|
37
|
-
* color: '#ffd246'
|
|
38
|
-
* }, {
|
|
39
|
-
* value: 20,
|
|
40
|
-
* color: '#28b4c8'
|
|
41
|
-
* }, {
|
|
42
|
-
* value: 30,
|
|
43
|
-
* color: '#78d237'
|
|
44
|
-
* }];
|
|
45
|
-
* }
|
|
46
|
-
* ```
|
|
47
|
-
*
|
|
48
|
-
* @remarks
|
|
49
|
-
* Supported children components are: {@link RadialPointerComponent}
|
|
50
|
-
*/
|
|
51
|
-
export declare class RadialPointersComponent extends CollectionComponent {
|
|
52
|
-
children: QueryList<CollectionItemComponent>;
|
|
53
|
-
constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService);
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadialPointersComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialPointersComponent, "kendo-radialgauge-pointers", never, {}, {}, ["children"], never, true, never>;
|
|
56
|
-
}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgZone, ElementRef, Renderer2 } from '@angular/core';
|
|
6
|
-
import { ConfigurationService, ThemeService } from '../services';
|
|
7
|
-
import { IntlService } from '@progress/kendo-angular-intl';
|
|
8
|
-
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { RadialPointer, RadialScale } from '../types';
|
|
10
|
-
import { GaugeComponent } from '../base-components';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
/**
|
|
13
|
-
* Represents the [Kendo UI RadialGauge component for Angular](https://www.telerik.com/kendo-angular-ui/components/gauges/radialgauge).
|
|
14
|
-
*
|
|
15
|
-
* @example
|
|
16
|
-
* ```ts
|
|
17
|
-
* import { Component } from '@angular/core';
|
|
18
|
-
*
|
|
19
|
-
* @Component({
|
|
20
|
-
* selector: 'my-app',
|
|
21
|
-
* template: `
|
|
22
|
-
* <kendo-radialgauge [pointer]="{ value: value }">
|
|
23
|
-
* </kendo-radialgauge>
|
|
24
|
-
* `
|
|
25
|
-
* })
|
|
26
|
-
* export class AppComponent {
|
|
27
|
-
* public value: number = 10;
|
|
28
|
-
* }
|
|
29
|
-
* ```
|
|
30
|
-
*
|
|
31
|
-
* @remarks
|
|
32
|
-
* Supported children components are: {@link RadialGaugeAreaComponent}, {@link RadialLabelsComponent}, {@link RadialPointersComponent}, {@link RadialRangesComponent}, {@link RadialScaleComponent}.
|
|
33
|
-
*/
|
|
34
|
-
export declare class RadialGaugeComponent extends GaugeComponent {
|
|
35
|
-
/**
|
|
36
|
-
* Sets the configuration of the pointers.
|
|
37
|
-
* You can configure single or multiple pointers for the RadialGauge.
|
|
38
|
-
*/
|
|
39
|
-
pointer: RadialPointer | RadialPointer[];
|
|
40
|
-
/**
|
|
41
|
-
* Sets the configuration of the scale.
|
|
42
|
-
* The scale defines the range, appearance, and behavior of the gauge.
|
|
43
|
-
*/
|
|
44
|
-
scale: RadialScale;
|
|
45
|
-
constructor(configurationService: ConfigurationService, themeService: ThemeService, intlService: IntlService, localizationService: LocalizationService, element: ElementRef, renderer: Renderer2, ngZone: NgZone);
|
|
46
|
-
protected createInstance(element: any, options: any, theme: any, context: any): void;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadialGaugeComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadialGaugeComponent, "kendo-radialgauge", ["kendoRadialGauge"], { "pointer": { "alias": "pointer"; "required": false; }; "scale": { "alias": "scale"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
export { RadialGaugeComponent } from './radial-gauge.component';
|
|
6
|
-
export { RadialGaugeAreaComponent } from './gauge-area.component';
|
|
7
|
-
export { RadialScaleComponent } from './scale.component';
|
|
8
|
-
export { RadialLabelsComponent } from './labels.component';
|
|
9
|
-
export { RadialPointersComponent } from './pointers.component';
|
|
10
|
-
export { RadialPointerComponent } from './pointer.component';
|
|
11
|
-
export { RadialRangeComponent } from './range.component';
|
|
12
|
-
export { RadialRangesComponent } from './ranges.component';
|