@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
27 lines (26 loc) • 895 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
*-------------------------------------------------------------------------------------------
*/
const e = (n, a) => {
if (n && n.chartInstance !== null)
return n.chartInstance.findAxisByName(a);
}, s = (n, a) => {
if (n && n.chartInstance !== null)
return n.chartInstance.findPaneByIndex(a);
}, i = (n, a) => {
if (n && n.chartInstance !== null)
return n.chartInstance.findPaneByName(a);
}, c = (n, a = {}) => {
if (n && n.chartInstance !== null)
return n.chartInstance.exportVisual(a);
};
export {
c as exportVisual,
e as findAxisByName,
s as findPaneByIndex,
i as findPaneByName
};