UNPKG

@progress/kendo-vue-charts

Version:
58 lines (57 loc) 2.14 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 { CategoryAxisCrosshair } from '../../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartNavigatorCategoryAxisCrosshair component. */ export interface ChartNavigatorCategoryAxisCrosshairProps extends CategoryAxisCrosshair { } /** * @hidden */ declare const ChartNavigatorCategoryAxisCrosshair: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ color: PropType<string>; dashType: { type: PropType<string>; default: () => any; validator: (value: string) => any; }; opacity: PropType<number>; visible: { type: PropType<boolean>; default: boolean; }; width: PropType<number>; tooltip: { type: PropType<import('../../../common/property-types').CategoryAxisCrosshairTooltip>; default: () => any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ color: PropType<string>; dashType: { type: PropType<string>; default: () => any; validator: (value: string) => any; }; opacity: PropType<number>; visible: { type: PropType<boolean>; default: boolean; }; width: PropType<number>; tooltip: { type: PropType<import('../../../common/property-types').CategoryAxisCrosshairTooltip>; default: () => any; }; }>> & Readonly<{}>, { dashType: string; visible: boolean; tooltip: import('../../../common/property-types').CategoryAxisCrosshairTooltip; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartNavigatorCategoryAxisCrosshair };