UNPKG

@progress/kendo-vue-charts

Version:
43 lines (42 loc) 1.05 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The dash line type. * * @example * ```jsx * <template> * <Chart> * <ChartSeries> * <ChartSeriesItem :type="'line'" :data-items="dataItems" :dash-type="'dot'" /> * </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 DashType = 'dash' | 'dashDot' | 'dot' | 'longDash' | 'longDashDot' | 'longDashDotDot' | 'solid';