UNPKG

@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.

29 lines (28 loc) 1.11 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { LineStyle } from './line-style'; /** * Specifies the appearance settings for the line of the Area, Candlestick, OHLC, and Waterfall series. */ export interface SeriesLine { /** * Specifies the color of the line. Accepts a valid CSS color string, including hex and rgb. */ color?: string; /** * Specifies the line opacity. By default, the line is opaque (`opacity = 1`). */ opacity?: number; /** * Specifies the drawing style of the line. * Applicable for the Area, Range Area, Polar Area, and Radar Area series. */ style?: LineStyle; /** * Specifies the line width in pixels. * By default, the width is set to `0` and the line is not visible. */ width?: number; }