@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
22 lines (21 loc) • 878 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as a from "react";
import { CollectionConfigurationComponent as i } from "./base/CollectionConfigurationComponent.mjs";
import { ChartCategoryAxisItem as m } from "./CategoryAxisItem.mjs";
import { validateChildren as n } from "../utils/index.mjs";
const t = (r) => /* @__PURE__ */ a.createElement(i, { ...r, _chartKey: "categoryAxis" });
t.propTypes = {
children: function(r, o, e) {
return n(r, o, e, m);
}
};
t.displayName = "ChartCategoryAxis";
export {
t as ChartCategoryAxis
};