UNPKG

@progress/kendo-vue-gauges

Version:
41 lines (40 loc) 1.26 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseGaugeProps } from './BaseGaugeProps'; import { ArcScale, ColorRange } from './types'; /** * Represents the props of the [Kendo UI for Vue ArcGauge component]({% slug overview_arcgauge_gauges %}). */ export interface ArcGaugeProps extends BaseGaugeProps { /** * The value of the Gauge. */ value: number; /** * The color of the value pointer. Accepts a valid CSS color string, including hex and rgb. */ color?: string; /** * The color ranges of the value pointer * ([see example]({% slug colorranges_arcgauge %})). */ colors?: ColorRange[]; /** * The opacity of the value pointer. */ opacity?: number; /** * The scale options of the ArcGauge. */ scale?: ArcScale; /** * * A function that renders the center template of the Gauge. */ centerRender?: any; }