UNPKG

@progress/kendo-vue-charts

Version:
58 lines (57 loc) 2.37 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 { SeriesErrorBars } from '../../common/property-types'; import { PropType } from 'vue'; /** * Represents the props of the Kendo UI for Vue ChartSeriesErrorBars component. */ export interface ChartSeriesErrorBarsProps extends SeriesErrorBars { } /** * @hidden */ declare const ChartSeriesErrorBars: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ color: PropType<string>; endCaps: { type: PropType<boolean>; default: any; }; line: { type: PropType<import('../../field-types/error-bar-line.interface').ErrorBarLine>; default: () => any; }; value: PropType<string>; visual: { type: PropType<(e: import('../../argument-types/error-bars-visual-args.interface').ErrorBarsVisualArgs) => import('@progress/kendo-drawing').Element>; default: any; }; xValue: PropType<string>; yValue: PropType<string>; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ color: PropType<string>; endCaps: { type: PropType<boolean>; default: any; }; line: { type: PropType<import('../../field-types/error-bar-line.interface').ErrorBarLine>; default: () => any; }; value: PropType<string>; visual: { type: PropType<(e: import('../../argument-types/error-bars-visual-args.interface').ErrorBarsVisualArgs) => import('@progress/kendo-drawing').Element>; default: any; }; xValue: PropType<string>; yValue: PropType<string>; }>> & Readonly<{}>, { line: import('../../field-types/error-bar-line.interface').ErrorBarLine; visual: (e: import('../../argument-types/error-bars-visual-args.interface').ErrorBarsVisualArgs) => import('@progress/kendo-drawing').Element; endCaps: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ChartSeriesErrorBars };