UNPKG

devexpress-reporting

Version:

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

29 lines (28 loc) 1.83 kB
/** * DevExpress HTML/JS Reporting (chart\internal\chartStructure\_controller.d.ts) * Version: 25.1.3 * Build date: Jun 26, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { ISurfaceContext } from '@devexpress/analytics-core/analytics-elements'; import { DragDropHandler, DragHelperContent, ObjectStructureTreeListController, SurfaceSelection } from '@devexpress/analytics-core/analytics-internal'; import { UndoEngine } from '@devexpress/analytics-core/analytics-utils'; import { ITreeListItemViewModel, TreeListItemViewModel } from '@devexpress/analytics-core/analytics-widgets-internal'; import * as ko from 'knockout'; import { ChartTreeListDragDropHelper } from './_chartTreeListDragDropHelper'; export declare class ChartStructureTreeListController extends ObjectStructureTreeListController { private surface?; private undoEngine?; private dragHelperContent?; constructor(propertyNames?: string[], listPropertyNames?: string[], selectCallback?: (value: TreeListItemViewModel) => void, surface?: SurfaceSelection, undoEngine?: ko.Observable<UndoEngine> | ko.Computed<UndoEngine>, dragHelperContent?: DragHelperContent); } export declare class ChartDragDropHandler extends DragDropHandler { private undoEngine; dispose(): void; constructor(surface: ko.Observable<ISurfaceContext> | ko.Computed<ISurfaceContext>, selection: SurfaceSelection, undoEngine: ko.Observable<UndoEngine> | ko.Computed<UndoEngine>, dragHelperContent: DragHelperContent); startDrag(draggable: ITreeListItemViewModel): void; drag(event: MouseEvent, ui: HTMLElement): void; doStopDrag(ui: Element, draggable: ITreeListItemViewModel, event: MouseEvent): void; dragDropHelper: ChartTreeListDragDropHelper; }