UNPKG

@progress/kendo-react-gauges

Version:

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

39 lines (38 loc) 1.27 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 { LinearGaugeProps } from './LinearGaugeProps'; import { Surface, Group } from '@progress/kendo-drawing'; import * as React from 'react'; export declare class LinearGauge extends React.Component<LinearGaugeProps, {}> { private _baseGauge; /** * @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; }