@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
31 lines (30 loc) • 1.17 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as React from 'react';
/**
* The props of the `ChartNoDataOverlay` component.
*/
export interface ChartNoDataOverlayProps {
/**
* The styles that are applied to the component.
*/
style?: React.CSSProperties;
/**
* Sets additional CSS classes to the component.
*/
className?: string;
/**
* The content of the overlay. If not set, the default message will be displayed.
*/
children?: React.ReactNode;
}
/**
* The KendoReact `ChartNoDataOverlay` component. The component is used to display an overlay with a message when the Chart has no data, no series, or all series are empty.
* The overlay will be automatically cleared if the series receive data.
*/
export declare const ChartNoDataOverlay: React.FunctionComponent<any>;