devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
15 lines (14 loc) • 895 B
TypeScript
/**
* DevExpress HTML/JS Reporting (viewer\internal\_brickUtils.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 { IBrickNode } from '../utils/utils';
import { EditingField } from '../editing/editingField';
import * as ko from 'knockout';
export declare function convertToPercent(childSize: any, parentSize: any): string;
export declare function brickText(brick: IBrickNode, editingFieldsProvider?: () => EditingField[]): any;
export declare function updateBricksPosition(brick: IBrickNode, height: any, width: any): void;
export declare function initializeBrick(brick: IBrickNode, processClick: (target: IBrickNode, e?: JQueryEventObject) => void, zoom: ko.Observable<number> | ko.Computed<number>, editingFieldBricks: IBrickNode[]): void;