Skip to content

[BUG] Subcharts with JupyterChart is wrong layout #410

@DonYum

Description

@DonYum

Expected Behavior

image

Current Behaviour

image

Reproducible Example

import pandas as pd
from lightweight_charts import JupyterChart

if __name__ == '__main__':
    chart = JupyterChart(inner_width=0.5, inner_height=0.5)
    chart2 = chart.create_subchart(position='right', width=0.5, height=0.5)
    chart3 = chart.create_subchart(position='left', width=0.5, height=0.5)
    chart4 = chart.create_subchart(position='right', width=0.5, height=0.5)

    chart.watermark('1')
    chart2.watermark('2')
    chart3.watermark('3')
    chart4.watermark('4')

    df = pd.read_csv('ohlcv.csv')
    chart.set(df)
    chart2.set(df)
    chart3.set(df)
    chart4.set(df)

    chart.load()

Environment

- OS: macOS 13.2
- Library: lightweight-charts==2.0.1

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions