@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
40 lines (39 loc) • 1.16 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Border, MarkerType } from '../../common/property-types.js';
/**
* @hidden
*/
export interface SeriesExtremes {
/**
* The background color of the series extremes.
*/
background?: string;
/**
* The border of the extremes.
*/
border?: Border;
/**
* The rotation angle of the extremes.
*/
rotation?: number;
/**
* The extremes size in pixels.
*/
size?: number;
/**
* The shape of the series extremes.
*
* The supported values are:
* * `"circle"`—The marker shape is a circle.
* * `"square"`—The marker shape is a square.
* * `"triangle"`—The marker shape is a triangle.
* * `"cross"`—The marker shape is a cross.
*/
type?: MarkerType;
}