@progress/kendo-vue-charts
Version:
58 lines (57 loc) • 2.09 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 { AxisDefaultsCrosshair } from '../../common/property-types';
import { PropType } from 'vue';
/**
* Represents the props of the Kendo UI for Vue ChartAxisDefaultsCrosshair component.
*/
export interface ChartAxisDefaultsCrosshairProps extends AxisDefaultsCrosshair {
}
/**
* @hidden
*/
declare const ChartAxisDefaultsCrosshair: 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').AxisDefaultsCrosshairTooltip>;
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').AxisDefaultsCrosshairTooltip>;
default: () => any;
};
}>> & Readonly<{}>, {
dashType: string;
visible: boolean;
tooltip: import('../../common/property-types').AxisDefaultsCrosshairTooltip;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartAxisDefaultsCrosshair };