UNPKG

@progress/kendo-react-gauges

Version:

React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package

40 lines (39 loc) 1.29 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 { ArcGaugeProps } from './ArcGaugeProps'; import { Surface, Group } from '@progress/kendo-drawing'; import * as React from 'react'; export declare class ArcGauge extends React.Component<ArcGaugeProps, {}> { private _baseGauge; protected gaugeType: any; /** * @hidden */ get gaugeInstance(): any; /** * The Drawing `Surface` of the Gauge. */ get surface(): Surface | null; /** * The DOM element of the Gauge. */ get element(): HTMLDivElement | null; /** * @hidden */ render(): any; /** * Exports a Gauge component as a Drawing `Scene`. * * @param {any} options - The parameters for the export operation. * @returns {Promise<Group>} - A promise that returns the root `Group` of the scene. */ exportVisual(options?: any): Promise<Group>; private getTarget; private deriveOptionsFromParent; }