1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
import React from 'react';
import PropTypes from 'prop-types';
import { createMuiTheme } from '@material-ui/core/styles';
import ThemePallete from 'ba-api/themePalette';
import {
BarChart,
Bar,
XAxis,
YAxis,
CartesianGrid,
Tooltip,
Legend,
LabelList
} from 'recharts';
import { data1 } from './sampleData';
const theme = createMuiTheme(ThemePallete.purpleTheme);
const color = ({
primary: theme.palette.primary.main,
secondary: theme.palette.secondary.main,
});
const renderCustomizedLabel = props => {
const {
x,
y,
width,
value,
} = props;
const radius = 10;
return (
<g>
<circle cx={x + (width / 2)} cy={y - radius} r={radius} fillOpacity="0.8" fill="#689F38" />
<text x={x + (width / 2)} y={y - radius} fill="#fff" textAnchor="middle" dominantBaseline="middle">
{value.split(' ')[1]}
</text>
</g>
);
};
renderCustomizedLabel.propTypes = {
x: PropTypes.number,
y: PropTypes.number,
width: PropTypes.number,
value: PropTypes.number,
};
renderCustomizedLabel.defaultProps = {
x: 0,
y: 0,
width: 0,
value: 0,
};
function BarCustomLabel() {
return (
<BarChart
width={800}
height={450}
data={data1}
margin={{
top: 5,
right: 30,
left: 20,
bottom: 5
}}
>
<XAxis dataKey="name" />
<YAxis />
<CartesianGrid strokeDasharray="3 3" />
<Tooltip />
<Legend />
<Bar dataKey="pv" fill={color.primary}>
<LabelList dataKey="name" content={renderCustomizedLabel} />
</Bar>
<Bar dataKey="uv" fill={color.secondary}>
<LabelList dataKey="name" content={renderCustomizedLabel} />
</Bar>
</BarChart>
);
}
export default BarCustomLabel;
|