/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ConfigurationService } from '../../common/configuration.service'; import { Border, MarkerType } from '../../common/property-types'; import { SeriesOutliers } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Represents the configuration of the Chart series outliers. * Applies to mild outliers. * For more information, refer to [`series.outliers`](https://www.telerik.com/kendo-angular-ui/components/charts/api/seriesitemcomponent#outliers). */ export declare class SeriesOutliersComponent extends SettingsComponent implements SeriesOutliers { configurationService: ConfigurationService; /** * Specifies the background color of the outliers. */ background: string; /** * Specifies the border configuration of the outliers. */ border: Border; /** * Specifies the rotation angle of the outliers. */ rotation: number; /** * Specifies the marker size in pixels. * * @default 6 */ size: number; /** * Specifies the outliers shape. * * @default 'circle' */ type: MarkerType; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }