Skip to content

Commit

Permalink
remove panel wrapper for inner countdistribution
Browse files Browse the repository at this point in the history
Signed-off-by: Eric <[email protected]>
  • Loading branch information
mengweieric committed Oct 20, 2023
1 parent 17c6b22 commit a4b96af
Showing 1 changed file with 15 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,20 @@ export const CountDistribution = ({
}

return (
<EuiPanel paddingSize="s">
<Plt
data={fillWithEmpty(finalData)}
layout={{
showlegend: true,
margin: {
l: 60,
r: 10,
b: 15,
t: 30,
pad: 0,
},
height: 220,
colorway: [LONG_CHART_COLOR],
}}
/>
</EuiPanel>
<Plt
data={fillWithEmpty(finalData)}
layout={{
showlegend: true,
margin: {
l: 60,
r: 10,
b: 15,
t: 30,
pad: 0,
},
height: 220,
colorway: [LONG_CHART_COLOR],
}}
/>
);
};

0 comments on commit a4b96af

Please sign in to comment.