@progress/kendo-vue-charts
Version:
117 lines (116 loc) • 3.25 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 { Title } from '../common/property-types';
import { PropType } from 'vue';
/**
* Represents the props of the Kendo UI for Vue ChartTitle component ([see example]({% slug title_chart_charts %})).
*/
export interface ChartTitleProps extends Title {
}
/**
* @hidden
*/
declare const ChartTitle: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
background: {
type: PropType<string>;
default: any;
};
border: {
type: PropType<import('../field-types/border.interface').Border>;
default: any;
};
margin: {
type: PropType<number | import('../field-types/margin.interface').Margin>;
default: any;
};
padding: {
type: PropType<number | import('../field-types/padding.interface').Padding>;
default: any;
};
align: {
type: PropType<string>;
default: any;
validator: (value: string) => any;
};
color: {
type: PropType<string>;
default: any;
};
font: {
type: PropType<string>;
default: any;
};
position: {
type: PropType<string>;
default: any;
validator: (value: string) => any;
};
text: {
type: PropType<string>;
default: any;
};
visible: {
type: PropType<boolean>;
default: any;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
background: {
type: PropType<string>;
default: any;
};
border: {
type: PropType<import('../field-types/border.interface').Border>;
default: any;
};
margin: {
type: PropType<number | import('../field-types/margin.interface').Margin>;
default: any;
};
padding: {
type: PropType<number | import('../field-types/padding.interface').Padding>;
default: any;
};
align: {
type: PropType<string>;
default: any;
validator: (value: string) => any;
};
color: {
type: PropType<string>;
default: any;
};
font: {
type: PropType<string>;
default: any;
};
position: {
type: PropType<string>;
default: any;
validator: (value: string) => any;
};
text: {
type: PropType<string>;
default: any;
};
visible: {
type: PropType<boolean>;
default: any;
};
}>> & Readonly<{}>, {
color: string;
border: import('../field-types/border.interface').Border;
background: string;
visible: boolean;
text: string;
font: string;
position: string;
padding: any;
margin: any;
align: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartTitle };