Closed pedropivotto closed 1 year ago
Hi there, I have updated the supported chart types. Bars (aka. histograms, as defined from Tradingview's original lightweight chart) is now supported. You may find the following snippet modified from usage.py useful:
usage.py
data = [{ 'seriesData': series_data, 'seriesType': 'histogram', }] dash_tvlwc.Tvlwc( id='tv-chart', data=data )
Thanks TysonWu! I'll take a look at the updated version.
Hi there, I have updated the supported chart types. Bars (aka. histograms, as defined from Tradingview's original lightweight chart) is now supported. You may find the following snippet modified from
usage.py
useful: