@progress/kendo-react-gauges 13.3.0-develop.9 → 13.4.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.
Files changed (47) hide show
  1. package/ArcCenter.d.ts +58 -0
  2. package/ArcGauge.d.ts +39 -0
  3. package/ArcGaugeProps.d.ts +46 -0
  4. package/BaseGauge.d.ts +98 -0
  5. package/BaseGaugeProps.d.ts +58 -0
  6. package/CircularGauge.d.ts +13 -0
  7. package/CircularGaugeProps.d.ts +24 -0
  8. package/GaugeContext.d.ts +19 -0
  9. package/LinearGauge.d.ts +38 -0
  10. package/LinearGaugeProps.d.ts +32 -0
  11. package/RadialGauge.d.ts +38 -0
  12. package/RadialGaugeProps.d.ts +32 -0
  13. package/common/gauges.d.ts +12 -0
  14. package/dist/cdn/js/kendo-react-gauges.js +1 -1
  15. package/index.d.mts +11 -685
  16. package/index.d.ts +11 -685
  17. package/package-metadata.d.ts +12 -0
  18. package/package-metadata.js +1 -1
  19. package/package-metadata.mjs +10 -16
  20. package/package.json +4 -4
  21. package/store/reducer.d.ts +21 -0
  22. package/store/store.d.ts +32 -0
  23. package/types/arc-scale.interface.d.ts +35 -0
  24. package/types/border.interface.d.ts +25 -0
  25. package/types/cap.interface.d.ts +20 -0
  26. package/types/circular-scale.interface.d.ts +17 -0
  27. package/types/color-range.interface.d.ts +28 -0
  28. package/types/dash-type.interface.d.ts +11 -0
  29. package/types/gauge-area.interface.d.ts +34 -0
  30. package/types/labels.interface.d.ts +54 -0
  31. package/types/line-cap.d.ts +11 -0
  32. package/types/line.interface.d.ts +29 -0
  33. package/types/linear-pointer-shape.d.ts +11 -0
  34. package/types/linear-pointer.interface.d.ts +43 -0
  35. package/types/linear-scale.interface.d.ts +33 -0
  36. package/types/margin.interface.d.ts +28 -0
  37. package/types/padding.interface.d.ts +28 -0
  38. package/types/radial-label-position.d.ts +11 -0
  39. package/types/radial-labels.interface.d.ts +15 -0
  40. package/types/radial-pointer.interface.d.ts +29 -0
  41. package/types/radial-scale.interface.d.ts +35 -0
  42. package/types/range.interface.d.ts +28 -0
  43. package/types/scale.interface.d.ts +54 -0
  44. package/types/ticks.interface.d.ts +28 -0
  45. package/types.d.ts +28 -0
  46. package/utils/common.d.ts +8 -0
  47. package/utils/css-variables.d.ts +72 -0
@@ -1,19 +1,13 @@
1
+ // Generated file. DO NOT EDIT.
1
2
  /**
2
- * @license
3
- *-------------------------------------------------------------------------------------------
4
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
- * Licensed under commercial license. See LICENSE.md in the package root for more information
6
- *-------------------------------------------------------------------------------------------
3
+ * @hidden
7
4
  */
8
- const e = Object.freeze({
9
- name: "@progress/kendo-react-gauges",
10
- productName: "KendoReact",
11
- productCode: "KENDOUIREACT",
12
- productCodes: ["KENDOUIREACT"],
13
- publishDate: 1768491563,
14
- version: "13.3.0-develop.9",
15
- licensingDocsUrl: "https://www.telerik.com/kendo-react-ui/components/my-license/"
5
+ export const packageMetadata = Object.freeze({
6
+ name: '@progress/kendo-react-gauges',
7
+ productName: 'KendoReact',
8
+ productCode: 'KENDOUIREACT',
9
+ productCodes: ['KENDOUIREACT'],
10
+ publishDate: 0,
11
+ version: '13.4.0-develop.1',
12
+ licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
16
13
  });
17
- export {
18
- e as packageMetadata
19
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-gauges",
3
- "version": "13.3.0-develop.9",
3
+ "version": "13.4.0-develop.1",
4
4
  "description": "React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -27,8 +27,8 @@
27
27
  "peerDependencies": {
28
28
  "@progress/kendo-drawing": "^1.21.2",
29
29
  "@progress/kendo-licensing": "^1.7.2",
30
- "@progress/kendo-react-common": "13.3.0-develop.9",
31
- "@progress/kendo-react-intl": "13.3.0-develop.9",
30
+ "@progress/kendo-react-common": "13.4.0-develop.1",
31
+ "@progress/kendo-react-intl": "13.4.0-develop.1",
32
32
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
33
33
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
34
34
  },
@@ -59,7 +59,7 @@
59
59
  "package": {
60
60
  "productName": "KendoReact",
61
61
  "productCode": "KENDOUIREACT",
62
- "publishDate": 1768491563,
62
+ "publishDate": 1770219148,
63
63
  "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
64
64
  }
65
65
  },
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { StoreAction } from './store.js';
9
+ /**
10
+ * @hidden
11
+ */
12
+ declare const optionsReducer: (currentState: any, action: StoreAction) => object;
13
+ /**
14
+ * @hidden
15
+ */
16
+ declare const themeReducer: (currentState: any, action: StoreAction) => any;
17
+ /**
18
+ * @hidden
19
+ */
20
+ declare const observersReducer: (currentState: any, action: StoreAction) => any;
21
+ export { optionsReducer, themeReducer, observersReducer };
@@ -0,0 +1,32 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const THROTTLE_MS: number;
12
+ /**
13
+ * @hidden
14
+ */
15
+ export interface StoreAction {
16
+ gaugeKey?: string;
17
+ gaugeCollectionIdxKey?: string;
18
+ type?: string;
19
+ payload: any;
20
+ }
21
+ /**
22
+ * @hidden
23
+ */
24
+ export interface Store {
25
+ getState(): any;
26
+ dispatch(action: StoreAction | object): void;
27
+ subscribe(f: Function): Function;
28
+ }
29
+ /**
30
+ * @hidden
31
+ */
32
+ export declare const createStore: (reducer: any) => Store;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { RadialLabels } from './radial-labels.interface.js';
9
+ import { Scale } from './scale.interface.js';
10
+ import { LineCap } from './line-cap.js';
11
+ /**
12
+ * The scale options of the Gauge.
13
+ */
14
+ export interface ArcScale extends Scale {
15
+ /**
16
+ * Configures the scale labels.
17
+ */
18
+ labels?: RadialLabels;
19
+ /**
20
+ * The distance between the range indicators and the ticks.
21
+ */
22
+ rangeDistance?: number;
23
+ /**
24
+ * The `lineCap` style of the ranges.
25
+ */
26
+ rangeLineCap?: LineCap;
27
+ /**
28
+ * The starting angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal 180 degrees in the polar coordinate system).
29
+ */
30
+ startAngle?: number;
31
+ /**
32
+ * The ending angle of the Gauge. The Gauge is rendered clockwise (0 degrees equals 180 degrees in the polar coordinate system).
33
+ */
34
+ endAngle?: number;
35
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { DashType } from './dash-type.interface.js';
9
+ /**
10
+ * The appearance settings for the border lines.
11
+ */
12
+ export interface Border {
13
+ /**
14
+ * The color of the border line. Accepts valid CSS color strings, including hex and rgb.
15
+ */
16
+ color?: string;
17
+ /**
18
+ * The dash type of the border line.
19
+ */
20
+ dashType?: DashType;
21
+ /**
22
+ * The width of the border line in pixels.
23
+ */
24
+ width?: number;
25
+ }
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The configuration options for the RadialGauge pointer cap.
10
+ */
11
+ export interface Cap {
12
+ /**
13
+ * The color of the cap. Accepts valid CSS color strings, including hex and rgb.
14
+ */
15
+ color?: string;
16
+ /**
17
+ * The size of the cap in percent (from 0 to 1).
18
+ */
19
+ size?: number;
20
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ArcScale } from './arc-scale.interface.js';
9
+ /**
10
+ * The scale options of the Gauge.
11
+ */
12
+ export interface CircularScale extends ArcScale {
13
+ /**
14
+ * @hidden
15
+ */
16
+ endAngle?: number;
17
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The color range configuration.
10
+ */
11
+ export interface ColorRange {
12
+ /**
13
+ * The color of the range. Accepts valid CSS color strings, including hex and rgb.
14
+ */
15
+ color?: string;
16
+ /**
17
+ * The opacity of the range.
18
+ */
19
+ opacity?: number;
20
+ /**
21
+ * The range start value.
22
+ */
23
+ from?: number;
24
+ /**
25
+ * The range end value.
26
+ */
27
+ to?: number;
28
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The dash type of a line.
10
+ */
11
+ export type DashType = 'dash' | 'dashDot' | 'dot' | 'longDash' | 'longDashDot' | 'longDashDotDot' | 'solid';
@@ -0,0 +1,34 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Border } from './border.interface.js';
9
+ import { Margin } from './margin.interface.js';
10
+ /**
11
+ * The configuration options for the Gauge area. Represents the entire visible area of the Gauge.
12
+ */
13
+ export interface GaugeArea {
14
+ /**
15
+ * The background of the Gauge area. Accepts valid CSS color strings, including hex and rgb.
16
+ */
17
+ background?: string;
18
+ /**
19
+ * The border of the Gauge area.
20
+ */
21
+ border?: Border;
22
+ /**
23
+ * The height of the Gauge area.
24
+ */
25
+ height?: number;
26
+ /**
27
+ * The margin of the Gauge area.
28
+ */
29
+ margin?: number | Margin;
30
+ /**
31
+ * The height of the Gauge area.
32
+ */
33
+ width?: number;
34
+ }
@@ -0,0 +1,54 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Border } from './border.interface.js';
9
+ import { Margin } from './margin.interface.js';
10
+ import { Padding } from './padding.interface.js';
11
+ /**
12
+ * The configuration of the scale labels.
13
+ */
14
+ export interface Labels {
15
+ /**
16
+ * The background of the labels. Accepts valid CSS color strings, including hex and rgb.
17
+ */
18
+ background?: string;
19
+ /**
20
+ * The border of the labels.
21
+ */
22
+ border?: Border;
23
+ /**
24
+ * The color of the labels. Accepts valid CSS color strings, including hex and rgb.
25
+ */
26
+ color?: string;
27
+ /**
28
+ * The font of the labels.
29
+ */
30
+ font?: string;
31
+ /**
32
+ * The format that is used to display the labels. Uses the IntlService [`format`](https://www.telerik.com/kendo-react-ui/components/intl/api/intlservice#toc-format) method.
33
+ */
34
+ format?: string;
35
+ /**
36
+ * The margin of the labels.
37
+ */
38
+ margin?: number | Margin;
39
+ /**
40
+ * The padding of the labels.
41
+ */
42
+ padding?: number | Padding;
43
+ /**
44
+ * The function which returns the label content.
45
+ *
46
+ * The available fields in the function argument are:
47
+ * - `value`—The value of the label.
48
+ */
49
+ content?: (e: any) => string;
50
+ /**
51
+ * The visibility of the labels.
52
+ */
53
+ visible?: boolean;
54
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The cap style of a line.
10
+ */
11
+ export type LineCap = 'butt' | 'round' | 'square';
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { DashType } from './dash-type.interface.js';
9
+ /**
10
+ * The scale line options.
11
+ */
12
+ export interface Line {
13
+ /**
14
+ * The color of the lines. Accepts valid CSS color strings, including hex and rgb.
15
+ */
16
+ color?: string;
17
+ /**
18
+ * The dash type of the line.
19
+ */
20
+ dashType?: DashType;
21
+ /**
22
+ * The visibility of the lines.
23
+ */
24
+ visible?: boolean;
25
+ /**
26
+ * The width of the line.
27
+ */
28
+ width?: number;
29
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The shape of the pointer.
10
+ */
11
+ export type LinearPointerShape = 'barIndicator' | 'arrow';
@@ -0,0 +1,43 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Border } from './border.interface.js';
9
+ import { Margin } from './margin.interface.js';
10
+ import { LinearPointerShape } from './linear-pointer-shape.js';
11
+ /**
12
+ * The configuration options for the LinearGauge pointer.
13
+ */
14
+ export interface LinearPointer {
15
+ /**
16
+ * The border of the Gauge area.
17
+ */
18
+ border?: Border;
19
+ /**
20
+ * The color of the pointer. Accepts valid CSS color strings, including hex and rgb.
21
+ */
22
+ color?: string;
23
+ /**
24
+ * The margin of the pointer.
25
+ */
26
+ margin?: number | Margin;
27
+ /**
28
+ * The opacity of the pointer.
29
+ */
30
+ opacity?: number;
31
+ /**
32
+ * The shape of the pointer.
33
+ */
34
+ shape?: LinearPointerShape;
35
+ /**
36
+ * The size of the pointer.
37
+ */
38
+ size?: number;
39
+ /**
40
+ * The value of the pointer.
41
+ */
42
+ value?: number;
43
+ }
@@ -0,0 +1,33 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Scale } from './scale.interface.js';
9
+ import { Line } from './line.interface.js';
10
+ import { Range } from './range.interface.js';
11
+ /**
12
+ * The scale options of the Gauge.
13
+ */
14
+ export interface LinearScale extends Scale {
15
+ /**
16
+ * Configures the scale line.
17
+ */
18
+ line?: Line;
19
+ /**
20
+ * The ranges of the scale.
21
+ */
22
+ ranges?: Range[];
23
+ /**
24
+ * Mirrors the scale labels and ticks. If the labels are normally on the left side of the scale, the mirroring of the scale will render them to the right.
25
+ */
26
+ mirror?: boolean;
27
+ /**
28
+ * Specifies if the scale will be vertical ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/lineargauge/orientation)).
29
+ *
30
+ * @default true
31
+ */
32
+ vertical?: boolean;
33
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The margin configuration for each side.
10
+ */
11
+ export interface Margin {
12
+ /**
13
+ * The top margin in pixels.
14
+ */
15
+ top?: number;
16
+ /**
17
+ * The right margin in pixels.
18
+ */
19
+ right?: number;
20
+ /**
21
+ * The bottom margin in pixels.
22
+ */
23
+ bottom?: number;
24
+ /**
25
+ * The left margin in pixels.
26
+ */
27
+ left?: number;
28
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The padding configuration for each side.
10
+ */
11
+ export interface Padding {
12
+ /**
13
+ * The top padding in pixels.
14
+ */
15
+ top?: number;
16
+ /**
17
+ * The right padding in pixels.
18
+ */
19
+ right?: number;
20
+ /**
21
+ * The bottom padding in pixels.
22
+ */
23
+ bottom?: number;
24
+ /**
25
+ * The left padding in pixels.
26
+ */
27
+ left?: number;
28
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The position of the RadialGauge labels.
10
+ */
11
+ export type RadialLabelPosition = 'inside' | 'outside';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Labels } from './labels.interface.js';
9
+ import { RadialLabelPosition } from './radial-label-position.js';
10
+ export interface RadialLabels extends Labels {
11
+ /**
12
+ * The position of the labels.
13
+ */
14
+ position?: RadialLabelPosition;
15
+ }
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Cap } from './cap.interface.js';
9
+ /**
10
+ * The configuration options for the RadialGauge pointer.
11
+ */
12
+ export interface RadialPointer {
13
+ /**
14
+ * The configuration options for the cap.
15
+ */
16
+ cap?: Cap;
17
+ /**
18
+ * The color of the pointer. Accepts valid CSS color strings, including hex and rgb.
19
+ */
20
+ color?: string;
21
+ /**
22
+ * The pointer length (in percent) that is based on the distance to the scale. The default length of `1` indicates that the pointer exactly reaches the scale. Accepts values between `0.1` and `1.5`.
23
+ */
24
+ length?: number;
25
+ /**
26
+ * The pointer value.
27
+ */
28
+ value?: number;
29
+ }
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { RadialLabels } from './radial-labels.interface.js';
9
+ import { Scale } from './scale.interface.js';
10
+ import { Range } from './range.interface.js';
11
+ /**
12
+ * The scale options of the Gauge.
13
+ */
14
+ export interface RadialScale extends Scale {
15
+ /**
16
+ * Configures the scale labels.
17
+ */
18
+ labels?: RadialLabels;
19
+ /**
20
+ * The distance between the range indicators and the ticks.
21
+ */
22
+ rangeDistance?: number;
23
+ /**
24
+ * The ranges of the scale.
25
+ */
26
+ ranges?: Range[];
27
+ /**
28
+ * The starting angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal 180 degrees in the polar coordinate system).
29
+ */
30
+ startAngle?: number;
31
+ /**
32
+ * The ending angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal to 180 degrees in the polar coordinate system).
33
+ */
34
+ endAngle?: number;
35
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The configuration for the scale ranges.
10
+ */
11
+ export interface Range {
12
+ /**
13
+ * The start position of the range.
14
+ */
15
+ from?: number;
16
+ /**
17
+ * The end position of the range.
18
+ */
19
+ to?: number;
20
+ /**
21
+ * The range opacity.
22
+ */
23
+ opacity?: number;
24
+ /**
25
+ * The color of the range. Accepts valid CSS color strings, including hex and rgb.
26
+ */
27
+ color?: string;
28
+ }