UNPKG

@progress/kendo-react-charts

Version:

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

28 lines (27 loc) 1.25 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 { SeriesDefaultsTooltip } from '../../common/property-types.js'; import { TooltipContext } from './../../tooltip/Context.js'; import * as React from 'react'; /** * Represents the props of the KendoReact ChartSeriesDefaultsItemTooltip component. */ export interface ChartSeriesDefaultsItemTooltipProps extends SeriesDefaultsTooltip { /** * A function that can be used to create a custom tooltip template. * * The function accepts a `TooltipContext` object as an argument and should return a React element * that represents the custom tooltip content. */ render?: (props: TooltipContext) => React.ReactNode; } /** * Represents the KendoReact ChartSeriesDefaultsItemTooltip component. */ declare const ChartSeriesDefaultsItemTooltip: React.FunctionComponent<ChartSeriesDefaultsItemTooltipProps>; export { ChartSeriesDefaultsItemTooltip };