/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the line style of the series. * * The possible values are: * - `"normal"`—Connects the values with a straight line. * - `"step"`—Connects the values with a right-angled line. Available when [`series.type`](https://www.telerik.com/kendo-angular-ui/components/charts/api/series#type) is set to `"line"`. * - `"smooth"`—Connects the values with a smooth line. Not supported for stacked area series with missing values. * * @example * ```ts * import { Component } from '@angular/core'; * import { LineStyle } from '@progress/kendo-angular-charts'; * * _@Component({ * selector: 'my-app', * template: ` * * * * * * * ` * }) * export class AppComponent { * public style: LineStyle = "smooth"; * } * * ``` */ export type LineStyle = 'normal' | 'step' | 'smooth';