@progress/kendo-vue-charts
Version:
59 lines (58 loc) • 2.73 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 { SeriesDefaultsNotes } from '../../common/property-types';
import { PropType } from 'vue';
/**
* Represents the props of the Kendo UI for Vue ChartSeriesDefaultsNotes component ([see example]({% slug series_chart_charts %}#toc-default-series-configuration)).
*/
export interface ChartSeriesDefaultsNotesProps extends SeriesDefaultsNotes {
}
/**
* @hidden
*/
declare const ChartSeriesDefaultsNotes: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
line: {
type: PropType<import('../../field-types/note-line.interface').NoteLine>;
default: () => any;
};
visual: {
type: PropType<(e: import('../../argument-types/series-note-visual-args.interface').SeriesNoteVisualArgs) => import('@progress/kendo-drawing').Element>;
default: any;
};
icon: {
type: PropType<import('../../common/property-types').SeriesDefaultsNotesIcon>;
default: () => any;
};
label: {
type: PropType<import('../../common/property-types').SeriesDefaultsNotesLabel>;
default: () => any;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
line: {
type: PropType<import('../../field-types/note-line.interface').NoteLine>;
default: () => any;
};
visual: {
type: PropType<(e: import('../../argument-types/series-note-visual-args.interface').SeriesNoteVisualArgs) => import('@progress/kendo-drawing').Element>;
default: any;
};
icon: {
type: PropType<import('../../common/property-types').SeriesDefaultsNotesIcon>;
default: () => any;
};
label: {
type: PropType<import('../../common/property-types').SeriesDefaultsNotesLabel>;
default: () => any;
};
}>> & Readonly<{}>, {
line: import('../../field-types/note-line.interface').NoteLine;
visual: (e: import('../../argument-types/series-note-visual-args.interface').SeriesNoteVisualArgs) => import('@progress/kendo-drawing').Element;
label: import('../../common/property-types').SeriesDefaultsNotesLabel;
icon: import('../../common/property-types').SeriesDefaultsNotesIcon;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartSeriesDefaultsNotes };