@progress/kendo-vue-gauges
Version:
25 lines (24 loc) • 977 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ArcGaugeProps } from './ArcGaugeProps';
import { CircularScale } from './types/circular-scale.interface';
import { ColorRange } from './types/color-range.interface';
/**
* Represents the props of the [Kendo UI for Vue CircularGauge component]({% slug overview_circulargauge_gauges %}).
*/
export interface CircularGaugeProps extends ArcGaugeProps {
/**
* The color ranges of the value pointer
* ([see example]({% slug colorranges_circulargauge %})).
*/
colors?: ColorRange[];
/**
* The scale options of the CircularGauge.
*/
scale?: CircularScale;
}