@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.
24 lines (23 loc) • 834 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 } from '../../common/property-types';
/**
* Represents the series markers highlight options.
*/
export interface MarkersHighlight {
/**
* Configures the border of the markers highlight.
*/
border?: Border;
/**
* Sets the color of the markers highlight.
* Accepts a valid CSS color string, including hex and rgb.
*/
color?: string;
/**
* Sets the opacity of the highlighted marker.
*/
opacity?: number;
}