-
I'm wondering how does this library support panes api? In LWC v5 it is one of the main features. How can i place several |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @slxnxl, Thanks for your interest to the library! Generally speaking, panes feature is in development now. Partially, you can use benefits of panes api in your project with series Actually i encountered some difficulties with current panes implementation in Lightweight-chart open source library that stopped me for a while. I mentioned it in tradingview/lightweight-charts#1872 Currently the pull request with new pane api is opened, i'm searching for possible solutions. In conclusion, try to utilize Stay tuned! |
Beta Was this translation helpful? Give feedback.
Hey @slxnxl,
Thanks for your interest to the library! Generally speaking, panes feature is in development now. Partially, you can use benefits of panes api in your project with series
isPane
prop. It will make chart treat you series as a separate pane, which is enough for several simple use cases.But currently we don't support: multiple series on the same pane, pane height, pane switching and order on the chart.
Actually i encountered some difficulties with current panes implementation in Lightweight-chart open source library that stopped me for a while. I mentioned it in tradingview/lightweight-charts#1872
Currently the pull request with new pane api is opened, i'm searching for possibl…