- Fixed a bug causing the library to throw errors when used with python 3.9.
- Fixed a bug that did not size the multi pane charts correctly. - Implementation of the ‘grid’ common method.
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
[](https://lightweight-charts-python.readthedocs.io/en/latest/docs.html)
|
[](https://lightweight-charts-python.readthedocs.io/en/latest/docs.html)
|
||||||
|
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
lightweight-charts-python aims to provide a simple and pythonic way to access and implement [TradingView's Lightweight Charts](https://www.tradingview.com/lightweight-charts/).
|
lightweight-charts-python aims to provide a simple and pythonic way to access and implement [TradingView's Lightweight Charts](https://www.tradingview.com/lightweight-charts/).
|
||||||
|
|
||||||
|
|||||||
@ -297,7 +297,7 @@ class LWC:
|
|||||||
price: {price},
|
price: {price},
|
||||||
color: '{color}',
|
color: '{color}',
|
||||||
lineWidth: {width},
|
lineWidth: {width},
|
||||||
lineStyle: LightweightCharts.LineStyle.{style},
|
lineStyle: LightweightCharts.LineStyle.{_line_type(style)},
|
||||||
axisLabelVisible: {'true' if axis_label_visible else 'false'},
|
axisLabelVisible: {'true' if axis_label_visible else 'false'},
|
||||||
title: '{text}',
|
title: '{text}',
|
||||||
}};
|
}};
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='lightweight_charts',
|
name='lightweight_charts',
|
||||||
version='1.0.5',
|
version='1.0.6',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
python_requires='>=3.9',
|
python_requires='>=3.9',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
|||||||
Reference in New Issue
Block a user