gpt4 book ai didi

javascript - 在 react 中从图表 js-2 在圆环图中添加文本

转载 作者:数据小太阳 更新时间:2023-10-29 04:43:32 25 4
gpt4 key购买 nike

我想在我的圆环饼图中添加一条短信。更具体地说,我想要这样的东西: enter image description here

我在堆栈溢出中遇到了同样的问题,因为他们在 jquery 中使用图表 js,因为我是 javascript 的新手,所以我很困惑。这就是我定义饼图的方式:

<Doughnut
data={sectorsData}
width={250}
height={250}
options={{
legend: {
display: false
},
maintainAspectRatio: false,
responsive: true,
cutoutPercentage: 60
}}
/>

最佳答案

我的示例使用数据的属性 text 来指定内部文本:

const data = {
labels: [...],
datasets: [...],
text: '23%'
};

import React from 'react';
import ReactDOM from 'react-dom';
import {Doughnut} from 'react-chartjs-2';

// some of this code is a variation on https://jsfiddle.net/cmyker/u6rr5moq/
var originalDoughnutDraw = Chart.controllers.doughnut.prototype.draw;
Chart.helpers.extend(Chart.controllers.doughnut.prototype, {
draw: function() {
originalDoughnutDraw.apply(this, arguments);

var chart = this.chart.chart;
var ctx = chart.ctx;
var width = chart.width;
var height = chart.height;

var fontSize = (height / 114).toFixed(2);
ctx.font = fontSize + "em Verdana";
ctx.textBaseline = "middle";

var text = chart.config.data.text,
textX = Math.round((width - ctx.measureText(text).width) / 2),
textY = height / 2;

ctx.fillText(text, textX, textY);
}
});

const data = {
labels: [
'Red',
'Green',
'Yellow'
],
datasets: [{
data: [300, 50, 100],
backgroundColor: [
'#FF6384',
'#36A2EB',
'#FFCE56'
],
hoverBackgroundColor: [
'#FF6384',
'#36A2EB',
'#FFCE56'
]
}],
text: '23%'
};

class DonutWithText extends React.Component {

render() {
return (
<div>
<h2>React Doughnut with Text Example</h2>
<Doughnut data={data} />
</div>
);
}
};

ReactDOM.render(
<DonutWithText />,
document.getElementById('root')
);
<script src="https://gor181.github.io/react-chartjs-2/common.js"></script>
<script src="https://gor181.github.io/react-chartjs-2/bundle.js"></script>

<div id="root">
</div>

由于一些奇怪的控制台错误,您在运行 CodeSnippet 时必须向下滚动一点才能看到。

不过它在 CodePen 中工作正常,我写的地方:http://codepen.io/anon/pen/OpdBOq?editors=1010

关于javascript - 在 react 中从图表 js-2 在圆环图中添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42759306/

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