# Overlaping subplots

**URL:** https://community.plotly.com/t/overlaping-subplots/21482
**Category:** Dash Python
**Created:** [March 27, 2019, 3:52pm UTC](https://community.plotly.com/t/overlaping-subplots/21482 "2019-03-27T15:52:11Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![vaclavku](https://avatars.discourse-cdn.com/v4/letter/v/8c91f0/32.png) [@vaclavku](https://community.plotly.com/u/vaclavku)
#### Post date: [March 27, 2019, 3:52pm UTC](https://community.plotly.com/t/overlaping-subplots/21482/1 "2019-03-27T15:52:11Z")

</div>

Hello guys, I try to build a subplots graph.  
I’m using:  
tools.make\_subplots(rows=5, cols=3,  
specs=[[{‘rowspan’: 2, ‘colspan’: 2}, None, {‘rowspan’: 2}],  
[None, None, None],  
[{‘colspan’: 2}, None, {}],  
[{‘rowspan’: 2, ‘colspan’: 2}, None, {‘rowspan’: 2}],  
[None, None, None]]

The first two charts are assigned like this:  
fig.append\_trace(trace\_ohlc\_all,1,1)  
fig.append\_trace(trace\_ohlc\_all,1,3)

However, these are completedly overlapped?

![image](https://us1.discourse-cdn.com/flex024/uploads/plot/original/2X/7/751a39a8bac0c911767f4bcb0bc31afa32f447dd.png)

It drives me crazy? Any clue?

Many thanks,  
Vaclav

PS: On the third row, the space is split adequately.  
PPS: I’ve reviewed all solutions on the page.
