我正在为图表使用 nivo 库。我想将一些在内部使用的反应组件导出为 PNG/JPEG 图像ResponsiveBar
。问题是库中没有内置此功能。我有这样的组件结构:
<MyComponent>
<ResponsiveBar />
</MyComponent>
我需要一个将这种 React 组件作为参数并返回图像的函数。像这样的东西:
exortChartToPng(chartComponent);
我正在为图表使用 nivo 库。我想将一些在内部使用的反应组件导出为 PNG/JPEG 图像ResponsiveBar
。问题是库中没有内置此功能。我有这样的组件结构:
<MyComponent>
<ResponsiveBar />
</MyComponent>
我需要一个将这种 React 组件作为参数并返回图像的函数。像这样的东西:
exortChartToPng(chartComponent);