UNPKG

devexpress-reporting

Version:

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

27 lines (26 loc) 1.11 kB
/** * DevExpress HTML/JS Reporting (chart\internal\_utils.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { SeriesPointModel } from '../components/series/_point'; import * as ko from 'knockout'; export declare function createInnerActionsWithPopover(text: any, id: any, actions: any): { text: any; imageClassName: string; imageTemplateName: string; disabled: ko.Observable<boolean>; id: any; _visible: ko.Observable<boolean>; popoverVisible: any; togglePopoverVisible: any; closePopover: any; templateName: string; getContainer: (element: HTMLElement, selector: string) => JQuery<HTMLElement>; actions: any; }[]; export declare function _isNumericTypeSpecific(specific: string): boolean; export declare function _isDateTypeSpecific(specific: string): boolean; export declare function _getUnconvertiblePoint(propertyName: string, oldValue: string, newValue: string, points: SeriesPointModel[]): SeriesPointModel;