UNPKG

@progress/kendo-react-charts

Version:

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

26 lines (25 loc) 848 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ export interface NavigatorHint { /** * The function that returns the content of the hint. * * The available fields in the event argument are: * - `from`—The lower boundary of the selected range. * - `to`—The upper boundary of the selected range. */ content?: (e: any) => string; /** * The format of the hint. */ format?: string; /** * The visibility of the hint. */ visible?: boolean; }