gpt4 book ai didi

javascript - 如何在 react 中使用 highcharts 绘制圆环图迷你图?

转载 作者:行者123 更新时间:2023-12-04 16:12:33 25 4
gpt4 key购买 nike

我想在我的 react 项目中使用 highcharts 绘制 donut spakline 图。
我怎么能在 react 中做到这一点?
这就是我想要显示值的百分比的内容:
enter image description here

最佳答案

您只需要使用 solid-gauge系列类型。为了更轻松地在 React 中使用 Highcharts,请使用 highcharts-react-official wrapper 。

import Highcharts from "highcharts";
import HCMore from "highcharts/highcharts-more";
import solidGauge from "highcharts/modules/solid-gauge";
import HighchartsReact from "highcharts-react-official";

HCMore(Highcharts);
solidGauge(Highcharts);

const App = () => {
const [options] = useState(...);

return <HighchartsReact highcharts={Highcharts} options={options} />;
};

现场演示: https://codesandbox.io/s/highcharts-react-demo-forked-wq2eg?file=/demo.jsx
Highcharts 演示: https://www.highcharts.com/demo/gauge-solid

关于javascript - 如何在 react 中使用 highcharts 绘制圆环图迷你图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66928878/

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