@progress/kendo-react-chart-wizard
Version:
React Chart Wizard lets you create a chart using data from a Grid, another data-bound component, or an external source
20 lines (19 loc) • 879 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
*-------------------------------------------------------------------------------------------
*/
"use client";
import { ChartWizard as e } from "./ChartWizard.mjs";
import { createState as a, getWizardDataFromDataRows as d } from "./utils.mjs";
import { getGridSelectedRows as m } from "./grid-integration/get-grid-selected-rows.mjs";
import { getWizardDataFromGridSelection as p } from "./grid-integration/get-wizard-data-from-grid-selection.mjs";
export {
e as ChartWizard,
a as createState,
m as getGridSelectedRows,
d as getWizardDataFromDataRows,
p as getWizardDataFromGridSelection
};