@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.
43 lines (42 loc) • 2.09 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 { ConfigurationService } from '../../common/configuration.service';
import { Border, MarkerType } from '../../common/property-types';
import { SeriesExtremes } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the configuration of the Chart series extremes.
* Applies to extreme outliers.
* For more information, refer to the [`series.extremes`]({% slug api_charts_seriesitemcomponent %}#toc-extremes) option.
*/
export declare class SeriesExtremesComponent extends SettingsComponent implements SeriesExtremes {
configurationService: ConfigurationService;
/**
* Specifies the background color of the extremes.
*/
background: string;
/**
* Specifies the border configuration of the extremes.
*/
border: Border;
/**
* Specifies the rotation angle of the extremes.
*/
rotation: number;
/**
* Specifies the extremes size in pixels.
* @default 6
*/
size: number;
/**
* Specifies the shape of the series extremes.
* @default 'circle'
*/
type: MarkerType;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesExtremesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesExtremesComponent, "kendo-chart-series-item-extremes", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "rotation": { "alias": "rotation"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
}