UNPKG

@progress/kendo-vue-charts

Version:
71 lines (70 loc) 2.42 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 { CategoryAxisNotesLabel } from '../../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartNavigatorCategoryAxisNotesLabel component. */ export interface ChartNavigatorCategoryAxisNotesLabelProps extends CategoryAxisNotesLabel { } /** * @hidden */ declare const ChartNavigatorCategoryAxisNotesLabel: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ background: PropType<string>; border: { type: PropType<import('../../../field-types/border.interface').Border>; default: () => any; }; color: PropType<string>; content: { type: PropType<(e: any) => string>; default: any; }; font: PropType<string>; format: PropType<string>; position: { type: PropType<string>; default: any; validator: (value: string) => any; }; rotation: PropType<number>; visible: { type: PropType<boolean>; default: any; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ background: PropType<string>; border: { type: PropType<import('../../../field-types/border.interface').Border>; default: () => any; }; color: PropType<string>; content: { type: PropType<(e: any) => string>; default: any; }; font: PropType<string>; format: PropType<string>; position: { type: PropType<string>; default: any; validator: (value: string) => any; }; rotation: PropType<number>; visible: { type: PropType<boolean>; default: any; }; }>> & Readonly<{}>, { border: import('../../../field-types/border.interface').Border; visible: boolean; content: (e: any) => string; position: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartNavigatorCategoryAxisNotesLabel };