Results 13 comments of David

> ![Image](https://github.com/user-attachments/assets/ab56dbe6-e27f-457f-a568-1909efbd9e8b) Changing it like this seems to solve the problem.Hope it helps you. The calculated _interval and offset are wrong for drawing single elements because of the flawed and...

+1 I'd like to know how to go about resolving this issue.

``` chart = Chart(inner_width=1, inner_height=0.7, debug=True) chart.time_scale(visible=False) chart.price_scale(minimum_width=100) chart2 = chart.create_subchart(width=1, height=0.3, sync=True) chart2.price_scale(minimum_width=100) line_rsi = chart2.create_line('rsi') ``` **func price_scale(minimum_width=100)** Setting minimum width on both sides solved my issue 💯