UNPKG

@progress/kendo-vue-charts

Version:
22 lines (21 loc) 809 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseChartProps } from './BaseChartProps'; /** * Represents the props of the Kendo UI for Vue Native Sparkline component. */ export interface SparklineProps extends BaseChartProps { /** * The data for the default Sparkline series. Discarded if series are supplied. */ dataItems?: any; /** * The data for the default Sparkline series. Discarded if series are supplied. */ type?: string; }