UNPKG

@devexperts/dxcharts-lite

Version:
19 lines (18 loc) 1.09 kB
/* * Copyright (C) 2019 - 2025 Devexperts Solutions IE Limited * This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. * If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import { HitBoundsTest } from '../../canvas/canvas-bounds-container'; import { CanvasInputListenerComponent } from '../../inputlisteners/canvas-input-listener.component'; import { ChartPanComponent } from '../pan/chart-pan.component'; import { DragComponentOptions, DragNDropComponent, DragNDropComponentCallbacks } from './drag-n-drop.component'; export declare class DragNDropYComponent extends DragNDropComponent { constructor(hitTest: HitBoundsTest, dragCallbacks: DragNDropComponentCallbacks, canvasInputListener: CanvasInputListenerComponent, chartPanComponent: ChartPanComponent, dragComponentOptions?: DragComponentOptions); /** * This method activates the component and adds subscriptions to the canvasInputListener. * @protected * @returns {void} */ protected doActivate(): void; }