@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
22 lines (21 loc) • 843 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 i from "react";
import { CollectionConfigurationComponent as a } from "./base/CollectionConfigurationComponent.mjs";
import { ChartYAxisItem as m } from "./YAxisItem.mjs";
import { validateChildren as n } from "../utils/index.mjs";
const t = (r) => /* @__PURE__ */ i.createElement(a, { ...r, _chartKey: "yAxis" });
t.propTypes = {
children: function(r, o, e) {
return n(r, o, e, m);
}
};
t.displayName = "ChartYAxis";
export {
t as ChartYAxis
};