UNPKG

@progress/kendo-react-charts

Version:

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

24 lines (23 loc) 1.2 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 { CategoryAxis } from '../../common/property-types'; import * as React from 'react'; /** * Represents the props of the KendoReact ChartNavigatorCategoryAxis component. */ export interface ChartNavigatorCategoryAxisProps extends CategoryAxis { } /** * Represents the KendoReact ChartNavigatorCategoryAxis component. * * @remarks * Supported children components are: {@link ChartNavigatorCategoryAxisCrosshair}, {@link ChartNavigatorCategoryAxisLabels}, {@link ChartNavigatorCategoryAxisNotes}, * {@link ChartNavigatorCategoryAxisNotesIcon}, {@link ChartNavigatorCategoryAxisNotesLabel}, {@link ChartNavigatorCategoryAxisSelect}, {@link ChartNavigatorCategoryAxisTitle}. */ declare const ChartNavigatorCategoryAxis: React.FunctionComponent<ChartNavigatorCategoryAxisProps>; export { ChartNavigatorCategoryAxis };