UNPKG

devexpress-reporting

Version:

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

24 lines (23 loc) 1.05 kB
/** * DevExpress HTML/JS Reporting (designer\controls\properties\sortingOptions.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, IModelSerializer, ISerializableModel, ISerializationInfoArray } from '@devexpress/analytics-core/analytics-utils'; import * as ko from 'knockout'; import { BandViewModel } from '../../bands/xrBand'; import { ReportViewModel } from '../xrReport'; export declare class SortingOptions extends Disposable implements ISerializableModel { private _info; private _fieldNameInfo; targetBand: ko.Observable<BandViewModel>; fieldName: ko.Observable<string> | ko.Computed<string>; private _getFieldNames; getInfo(): ISerializationInfoArray; isPropertyDisabled(name: string): boolean; resetValue(): void; constructor(model: {}, report: ReportViewModel, serializer?: IModelSerializer); getPath(propertyName: string): any; }