@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.
31 lines (30 loc) • 919 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Border, MarkerType } from '../../common/property-types';
/**
* Represents the series outliers options.
*/
export interface SeriesOutliers {
/**
* Sets the background color of the series outliers.
*/
background?: string;
/**
* Configures the border of the outliers.
*/
border?: Border;
/**
* Sets the rotation angle of the outliers.
*/
rotation?: number;
/**
* Sets the marker size in pixels.
*/
size?: number;
/**
* Sets the outliers shape.
*/
type?: MarkerType;
}