/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * The line style of the series.
 *
 * @example
 * ```jsx
 * <template>
 *  <Chart>
 *    <ChartSeries>
 *      <ChartSeriesItem :type="'line'" :data-items="dataItems" :item-style="'smooth'" />
 *    </ChartSeries>
 *  </Chart>
 *  </template>
 * <script>
 * import {
 *  Chart,
 *  ChartSeries,
 *  ChartSeriesItem
 * } from '@progress/kendo-vue-charts';
 *
 * export default {
 *   components: {
 *      Chart,
 *      ChartSeries,
 *      ChartSeriesItem
 *   },
 *   data () {
 *       return {
 *          dataItems: [1, 2, 3]
 *       };
 *   }
 * }
 * </script>
 * ```
 */
export type LineStyle = 'normal' | 'step' | 'smooth';
