removed line from chart

This commit is contained in:
Malar Kannan
2018-07-01 21:12:54 +05:30
parent e1c6e4923c
commit 311180189f
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ export class Chart extends React.Component<any, any> {
<Title isSize={4}>Plotting {_.capitalize(this.props.chartColumn)}</Title>
<ResponsiveContainer width="100%" height={200}>
<PieChart>
<Pie data={chartData} dataKey='value' outerRadius={100} label={renderCustomizedLabel}>
<Pie data={chartData} dataKey='value' outerRadius={100} label={renderCustomizedLabel} labelLine={false}>
{
chartData.map((_0, _1) => <Cell key={_1} fill={randomColor()} />)
}