@progress/kendo-vue-charts
Version:
77 lines (76 loc) • 2.88 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 { Navigator } from '../common/property-types';
import { PropType } from 'vue';
/**
* Represents the props of the Kendo UI for Vue ChartNavigator component.
*/
export interface ChartNavigatorProps extends Navigator {
}
/**
* @hidden
*/
declare const ChartNavigator: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
visible: {
type: PropType<boolean>;
default: boolean;
};
categoryAxis: {
type: PropType<import('../option-types/category-axis-item.interface').CategoryAxis>;
default: () => any;
};
hint: {
type: PropType<import('../common/property-types').NavigatorHint>;
default: () => any;
};
pane: {
type: PropType<import('../option-types/pane.interface').Pane>;
default: () => any;
};
select: {
type: PropType<import('../common/property-types').NavigatorSelect>;
default: () => any;
};
series: {
type: PropType<import('../option-types/series-item.interface').Series | import('../option-types/series-item.interface').Series[]>;
default: () => any;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
visible: {
type: PropType<boolean>;
default: boolean;
};
categoryAxis: {
type: PropType<import('../option-types/category-axis-item.interface').CategoryAxis>;
default: () => any;
};
hint: {
type: PropType<import('../common/property-types').NavigatorHint>;
default: () => any;
};
pane: {
type: PropType<import('../option-types/pane.interface').Pane>;
default: () => any;
};
select: {
type: PropType<import('../common/property-types').NavigatorSelect>;
default: () => any;
};
series: {
type: PropType<import('../option-types/series-item.interface').Series | import('../option-types/series-item.interface').Series[]>;
default: () => any;
};
}>> & Readonly<{}>, {
visible: boolean;
select: import('../common/property-types').NavigatorSelect;
hint: import('../common/property-types').NavigatorHint;
categoryAxis: import('../option-types/category-axis-item.interface').CategoryAxis;
series: any;
pane: import('../option-types/pane.interface').Pane;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartNavigator };