@progress/kendo-vue-charts
Version:
76 lines (75 loc) • 2.62 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 { SeriesDefaultsLabelsTo } from '../../common/property-types';
import { PropType } from 'vue';
/**
* Represents the props of the Kendo UI for Vue ChartSeriesDefaultsLabelsTo component.
*/
export interface ChartSeriesDefaultsLabelsToProps extends SeriesDefaultsLabelsTo {
}
/**
* @hidden
*/
declare const ChartSeriesDefaultsLabelsTo: 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>;
margin: {
type: PropType<number | import('../../field-types/margin.interface').Margin>;
default: () => any;
};
padding: {
type: PropType<number | import('../../field-types/padding.interface').Padding>;
default: () => any;
};
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>;
margin: {
type: PropType<number | import('../../field-types/margin.interface').Margin>;
default: () => any;
};
padding: {
type: PropType<number | import('../../field-types/padding.interface').Padding>;
default: () => any;
};
visible: {
type: PropType<boolean>;
default: any;
};
}>> & Readonly<{}>, {
border: import('../../field-types/border.interface').Border;
visible: boolean;
content: (e: any) => string;
padding: any;
margin: any;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartSeriesDefaultsLabelsTo };