blob: f0e86cd13c8217577e64fd63bc0f9737975194cd (
plain)
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
|
import React from 'react';
import { createMuiTheme } from '@material-ui/core/styles';
import ThemePallete from 'ba-api/themePalette';
import {
Radar,
RadarChart,
PolarGrid,
PolarAngleAxis,
PolarRadiusAxis
} from 'recharts';
import { data7 } from './sampleData';
const theme = createMuiTheme(ThemePallete.purpleTheme);
const color = ({
main: theme.palette.primary.main,
dark: theme.palette.primary.dark,
});
function RadarSimple() {
return (
<RadarChart cx={300} cy={250} outerRadius={150} width={600} height={500} data={data7}>
<PolarGrid />
<PolarAngleAxis dataKey="subject" />
<PolarRadiusAxis />
<Radar name="Mike" dataKey="A" stroke={color.dark} fill={color.main} fillOpacity={0.8} />
</RadarChart>
);
}
export default RadarSimple;
|