UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

21 lines (20 loc) 1.04 kB
/** * DevExpress HTML/JS Reporting (designer\controls\xrGauge.d.ts) * Version: 24.2.6 * Build date: Mar 18, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { ElementViewModel } from '@devexpress/analytics-core/analytics-elements'; import { IDisplayedValue, ISerializationInfoArray, ModelSerializer } from '@devexpress/analytics-core/analytics-utils'; import { ControlType } from './utils/_controlTypes'; import { XRControlViewModel } from './xrControl'; export declare const circularValues: Array<IDisplayedValue>; export declare const linearValues: Array<IDisplayedValue>; export declare class XRGaugeViewModel extends XRControlViewModel { static bindings: string[]; constructor(model: any, parent: ElementViewModel<ControlType>, serializer?: ModelSerializer); getInfo(): ISerializationInfoArray; viewType: ko.Observable<string> | ko.Computed<string>; viewStyle: ko.Observable<string> | ko.Computed<string>; }