/** * @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; }