@progress/kendo-angular-charts
Version:
Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.
50 lines (49 loc) • 2.42 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
import { ConfigurationService } from '../../common/configuration.service';
import { ErrorBarLine, ErrorBarsVisualArgs } from '../../common/property-types';
import { SeriesErrorBars } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the configuration of the Chart series error bars
* ([see example]({% slug errorbars_chart_charts %})).
*/
export declare class SeriesErrorBarsComponent extends SettingsComponent implements SeriesErrorBars {
configurationService: ConfigurationService;
/**
* Specifies the color of the error bars.
*/
color: string;
/**
* Determines whether the caps of the error bars are displayed. By default, the caps are visible.
* @default true
*/
endCaps: boolean;
/**
* Specifies the line configuration of the error bars.
*/
line: ErrorBarLine;
/**
* Specifies the value for the error bars.
*/
value: string;
/**
* Specifies a function that creates a custom visual for the error bars.
*/
visual: (e: ErrorBarsVisualArgs) => drawing.Element;
/**
* Specifies the x-axis value for the error bars.
*/
xValue: string;
/**
* Specifies the y-axis value for the error bars.
*/
yValue: string;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesErrorBarsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesErrorBarsComponent, "kendo-chart-series-item-error-bars", never, { "color": { "alias": "color"; "required": false; }; "endCaps": { "alias": "endCaps"; "required": false; }; "line": { "alias": "line"; "required": false; }; "value": { "alias": "value"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "xValue": { "alias": "xValue"; "required": false; }; "yValue": { "alias": "yValue"; "required": false; }; }, {}, never, never, true, never>;
}