@progress/kendo-vue-charts
Version:
50 lines (49 loc) • 1.73 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { NavigatorSelect } from '../../common/property-types';
import { PropType } from 'vue';
/**
* Represents the props of then Kendo UI for Vue ChartNavigatorSelect component.
*/
export interface ChartNavigatorSelectProps extends NavigatorSelect {
}
/**
* @hidden
*/
declare const ChartNavigatorSelect: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
from: {
type: PropType<Date>;
default: () => any;
};
mousewheel: {
type: PropType<boolean | import('../../field-types/mousewheel-select.interface').MousewheelSelect>;
default: () => any;
};
to: {
type: PropType<Date>;
default: () => any;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
from: {
type: PropType<Date>;
default: () => any;
};
mousewheel: {
type: PropType<boolean | import('../../field-types/mousewheel-select.interface').MousewheelSelect>;
default: () => any;
};
to: {
type: PropType<Date>;
default: () => any;
};
}>> & Readonly<{}>, {
from: Date;
to: Date;
mousewheel: any;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartNavigatorSelect };