Could you post some code for how you generated the plot in the readme? #32
Replies: 3 comments
-
|
What plot are you referring to? |
Beta Was this translation helpful? Give feedback.
-
|
I just tried to create the examples with this library. Still have some problems to just create a good looking chart. Also the watermark is not shown. import pandas as pd
from lightweight_charts_esistjosh import Chart
if __name__ == '__main__':
chart = Chart(title='Title', maximize=True)
df = pd.read_csv('test/daily.csv')
chart.set(df)
chart.watermark('TEST')
chart.show(block=True) |
Beta Was this translation helpful? Give feedback.
-
|
For the time being when instantiating the chart object it is necessary to specify the folder paths for the "defaults" and "scripts" folders. They can be found at
Example (from ./run.py): As for the watermarks, I might get around to fixing it eventually, but it is a low priority for me as I don't personally use it. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
or any basic examples of how to use the new features you created. thanks.
Beta Was this translation helpful? Give feedback.
All reactions