use*_*203 8 javascript pie-chart reactjs react-chartjs
我想在甜甜圈饼图中添加一条短信.更具体一点,我想要这样的东西:
我在堆栈溢出中遇到了同样的问题,他们在jquery中使用图表js,因为我是javascript的新手,我感到很困惑.这就是我定义饼图的方式:
<Doughnut
data={sectorsData}
width={250}
height={250}
options={{
legend: {
display: false
},
maintainAspectRatio: false,
responsive: true,
cutoutPercentage: 60
}}
/>
Run Code Online (Sandbox Code Playgroud)
我的示例使用text
数据上的属性指定内部文本:
const data = {
labels: [...],
datasets: [...],
text: '23%'
};
Run Code Online (Sandbox Code Playgroud)
const data = {
labels: [...],
datasets: [...],
text: '23%'
};
Run Code Online (Sandbox Code Playgroud)
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')
);
Run Code Online (Sandbox Code Playgroud)
由于一些奇怪的控制台错误,您必须向下滚动一点才能看到运行CodeSnippet的内容。
尽管它在CodePen中正常工作,但我在哪里写的:http ://codepen.io/anon/pen/OpdBOq?editors=1010