UNPKG

@progress/kendo-vue-charts

Version:
103 lines (102 loc) 3.94 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 { SeriesDefaultsLabels } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartSeriesDefaultsLabels component ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)). */ export interface ChartSeriesDefaultsLabelsProps extends SeriesDefaultsLabels { } /** * @hidden */ declare const ChartSeriesDefaultsLabels: 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: boolean; }; visual: { type: PropType<(e: import('../../argument-types/series-labels-visual-args.interface').SeriesLabelsVisualArgs) => import('@progress/kendo-drawing').Element>; default: any; }; from: { type: PropType<import('../../common/property-types').SeriesDefaultsLabelsFrom>; default: () => any; }; to: { type: PropType<import('../../common/property-types').SeriesDefaultsLabelsTo>; 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: boolean; }; visual: { type: PropType<(e: import('../../argument-types/series-labels-visual-args.interface').SeriesLabelsVisualArgs) => import('@progress/kendo-drawing').Element>; default: any; }; from: { type: PropType<import('../../common/property-types').SeriesDefaultsLabelsFrom>; default: () => any; }; to: { type: PropType<import('../../common/property-types').SeriesDefaultsLabelsTo>; default: () => any; }; }>> & Readonly<{}>, { border: import('../../field-types/border.interface').Border; from: import('../../common/property-types').SeriesDefaultsLabelsFrom; to: import('../../common/property-types').SeriesDefaultsLabelsTo; visible: boolean; visual: (e: import('../../argument-types/series-labels-visual-args.interface').SeriesLabelsVisualArgs) => import('@progress/kendo-drawing').Element; content: (e: any) => string; padding: any; margin: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartSeriesDefaultsLabels };