gpt4 book ai didi

javascript - 将 chartjs-chart-treemap 与 react-chartjs-2 集成

转载 作者:行者123 更新时间:2023-12-04 10:20:29 35 4
gpt4 key购买 nike

我想从 chartjs-chart-treemap 添加树状图到我现有的使用 react-chartjs-2 的项目中.

我到目前为止尝试过:

import ChartComponent from 'react-chartjs-2';


export default class TreeMap extends React.Component {
render() {
return (
<ChartComponent
{...this.props}
ref={ref => this.chartInstance = ref && ref.chartInstance}
type='treemap'
/>
);
}
}

,但是在尝试渲染此组件时我会看到以下错误:

Error: "treemap" is not a chart type.



如何在 React 中使用 chartjs-chart-treemap?

最佳答案

必须将 chartjs-chart-treemap 库导入到组件文件中

import ChartComponent from 'react-chartjs-2';
import 'chartjs-chart-treemap';


export default class TreeMap extends React.Component {
render() {
return (
<ChartComponent
{...this.props}
ref={ref => this.chartInstance = ref && ref.chartInstance}
type='treemap'
/>
);
}
}

关于javascript - 将 chartjs-chart-treemap 与 react-chartjs-2 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60888173/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com