UNPKG

@progress/kendo-vue-charts

Version:
44 lines (43 loc) 1.09 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Specifies the marker type. * * @example * ```jsx * <template> * <Chart> * <ChartSeries> * <ChartSeriesItem :type="'line'" :data-items="dataItems" :markers="markerType" /> * </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], * markerType: { type: "cross" } * }; * } * } * </script> * ``` */ export type MarkerType = 'square' | 'circle' | 'triangle' | 'cross' | 'rect' | 'roundedRect';