devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
44 lines (43 loc) • 1.76 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\dataObjects\calculatedField.d.ts)
* Version: 25.2.3
* Build date: Dec 15, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { Disposable, IDataMemberInfo, IModelSerializer, IPathRequest, ISerializationInfoArray } from '@devexpress/analytics-core/analytics-utils';
import { IExpressionOptions, ObjectProperties } from '@devexpress/analytics-core/analytics-widgets';
import * as ko from 'knockout';
import { IScriptingControl } from '../internal/scripting/_scriptsEditor';
import { ObjectStorageItem } from './objectStorageItem';
export declare class CalculatedField extends Disposable implements IDataMemberInfo, IScriptingControl {
getInfo(): ISerializationInfoArray;
constructor(model: any, serializer?: IModelSerializer);
scripts: any;
isSelected?: boolean;
dataType?: string;
innerActions?: any;
relationPath?: string;
noDragable?: any;
dragData?: any;
icon?: string;
items?: IDataMemberInfo[];
get displayName(): string;
get name(): string;
get specifics(): string;
get type(): string;
lockedInUserDesigner(): boolean;
displayType(): any;
templateName: string;
contenttemplate: string;
isList: boolean;
isCalculated: boolean;
calculatedFieldName: ko.Observable<string> | ko.Computed<string>;
nameEditable: ko.Computed<string>;
dataMember: ko.Observable<string> | ko.Computed<string>;
dataSource: ko.Observable<ObjectStorageItem>;
fieldType: ko.Observable<string> | ko.Computed<string>;
calcExpressionObj: IExpressionOptions;
propertyGrid: ObjectProperties;
pathRequest: IPathRequest;
}