Reputation: 125
I want to display two charts in one row I have applied chart.bounds() method still not working here my every chart is in different component and I am passing two component in a row like this way:
<Container>
<Row>
<Col>
<Graph />
</Col>
<Col>
<Demo />
</Col>
</Row>
</Container>
here Graph and Demo are not displaying in one row when I using react-bootstrap.
Upvotes: 0
Views: 344
Reputation: 3905
As charts are placed in different containers, there's no need to apply bounds()
settings to them. It's all about CSS setting for your content.
Upvotes: 2