UNPKG

@progress/kendo-vue-charts

Version:
58 lines (57 loc) 2.22 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 { AxisDefaultsCrosshairTooltip } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartAxisDefaultsCrosshairTooltip component. */ export interface ChartAxisDefaultsCrosshairTooltipProps extends AxisDefaultsCrosshairTooltip { } /** * @hidden */ declare const ChartAxisDefaultsCrosshairTooltip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ background: PropType<string>; border: { type: PropType<import('../../option-types/tooltip-border.interface').TooltipBorder>; default: () => any; }; color: PropType<string>; font: PropType<string>; format: PropType<string>; padding: { type: PropType<number | import('../../field-types/padding.interface').Padding>; default: () => any; }; visible: { type: PropType<boolean>; default: boolean; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ background: PropType<string>; border: { type: PropType<import('../../option-types/tooltip-border.interface').TooltipBorder>; default: () => any; }; color: PropType<string>; font: PropType<string>; format: PropType<string>; padding: { type: PropType<number | import('../../field-types/padding.interface').Padding>; default: () => any; }; visible: { type: PropType<boolean>; default: boolean; }; }>> & Readonly<{}>, { border: import('../../option-types/tooltip-border.interface').TooltipBorder; visible: boolean; padding: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartAxisDefaultsCrosshairTooltip };