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