From 7f0e22e28863f520d554f69069989048d1644dc0 Mon Sep 17 00:00:00 2001 From: corpglory-dev Date: Wed, 6 Mar 2019 17:04:51 +0300 Subject: [PATCH] Run prettier --- .../grafana-ui/src/components/Piechart/Piechart.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/grafana-ui/src/components/Piechart/Piechart.tsx b/packages/grafana-ui/src/components/Piechart/Piechart.tsx index d8c92ddbc59..d2822475461 100644 --- a/packages/grafana-ui/src/components/Piechart/Piechart.tsx +++ b/packages/grafana-ui/src/components/Piechart/Piechart.tsx @@ -56,7 +56,8 @@ export class Piechart extends PureComponent { const innerRadius = pieType === PiechartType.PIE ? 0 : radius; d3.select('.piechart-container svg').remove(); - const svg = d3.select('.piechart-container') + const svg = d3 + .select('.piechart-container') .append('svg') .attr('width', width) .attr('height', height) @@ -72,7 +73,8 @@ export class Piechart extends PureComponent { const pie = d3.pie(); - svg.selectAll('path') + svg + .selectAll('path') .data(pie(data)) .enter() .append('path') @@ -91,18 +93,17 @@ export class Piechart extends PureComponent { const { height, width } = this.props; return ( -
+
(this.containerElement = element)} - className='piechart-container' + className="piechart-container" style={{ height: `${height * 0.9}px`, width: `${Math.min(width, height * 1.3)}px`, top: '10px', margin: 'auto', }} - > -
+ />
); }