UNPKG

@progress/kendo-react-charts

Version:

React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package

23 lines (22 loc) 884 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The appearance settings for the overlay of the series elements. */ export interface Overlay { /** * The gradient of the Chart series. * * The supported values are: * * `"glass"`—Applicable for the Bar, Column, and Candlestick series. * * `"none"` * * `"roundedBevel"`—Applicable for the Donut and Pie series. * * `"sharpBevel"`—Applicable for the Donut and Pie series. */ gradient?: 'glass' | 'none' | 'roundedBevel' | 'sharpBevel'; }