UNPKG

@progress/kendo-vue-charts

Version:
40 lines (39 loc) 1.49 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Zoomable } from '../common/property-types'; /** * Represents the props of the Kendo UI for Vue ChartZoomable component. */ export interface ChartZoomableProps extends Zoomable { } /** * @hidden */ declare const ChartZoomable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ mousewheel: { type: (ObjectConstructor | BooleanConstructor)[]; default: any; }; selection: { type: (ObjectConstructor | BooleanConstructor)[]; default: any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ mousewheel: { type: (ObjectConstructor | BooleanConstructor)[]; default: any; }; selection: { type: (ObjectConstructor | BooleanConstructor)[]; default: any; }; }>> & Readonly<{}>, { mousewheel: boolean | Record<string, any>; selection: boolean | Record<string, any>; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartZoomable };