UNPKG

@progress/kendo-react-charts

Version:

React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package

35 lines (34 loc) 1.11 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Series } from '../common/property-types.js'; import * as React from 'react'; /** * Represents the props of the KendoReact ChartSeriesItem component. */ export interface ChartSeriesItemProps extends Series { /** * @hidden */ children?: React.ReactNode; /** * @hidden */ _chartCollectionIdxKey?: string; /** * When set, the prop is used to render the Drilldown Series. */ drilldownSeriesFactory?: (props: any) => React.ReactElement<any, any>; } /** * Represents the KendoReact ChartSeriesItem component. * * @remarks * Supported children components are: {}. */ declare const ChartSeriesItem: React.FunctionComponent<ChartSeriesItemProps>; export { ChartSeriesItem };