UNPKG

@progress/kendo-vue-charts

Version:
76 lines (75 loc) 2.66 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 { PaneDefaultsTitle } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartPaneDefaultsTitle component ([see example]({% slug panes_chart_charts %})). */ export interface ChartPaneDefaultsTitleProps extends PaneDefaultsTitle { } /** * @hidden */ declare const ChartPaneDefaultsTitle: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ background: PropType<string>; border: { type: PropType<import('../../field-types/border.interface').Border>; default: () => any; }; color: PropType<string>; font: PropType<string>; margin: { type: PropType<number | import('../../field-types/margin.interface').Margin>; default: () => any; }; position: { type: PropType<string>; default: () => any; validator: (value: string) => any; }; visible: { type: PropType<boolean>; default: any; }; visual: { type: PropType<(e: any) => import('@progress/kendo-drawing').Element>; 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>; font: PropType<string>; margin: { type: PropType<number | import('../../field-types/margin.interface').Margin>; default: () => any; }; position: { type: PropType<string>; default: () => any; validator: (value: string) => any; }; visible: { type: PropType<boolean>; default: any; }; visual: { type: PropType<(e: any) => import('@progress/kendo-drawing').Element>; default: any; }; }>> & Readonly<{}>, { border: import('../../field-types/border.interface').Border; visible: boolean; visual: (e: any) => import('@progress/kendo-drawing').Element; position: string; margin: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartPaneDefaultsTitle };