Thomas Punt
Thomas Punt
If you're referring to the timescale axis, then you need to configure it via `timeVisible`. Example: ```js const chart = LightweightCharts.createChart( document.getElementById('container'), { timeScale: { timeVisible: true, }, }, );...
Thanks for the reminder, @dktapps. I've added it to the list.
> The php.net documentation is very confusing and doesn't include important information in a lot of places. Agreed. It does need more work, but I'm having difficulty finding the time...
Friendly ping on this. This is causing us typescript errors in our project.
Thanks for linking to the plugin, @SlicedSilver. @biennguyen13 I have made a few cleanups since then to better show its utilisation.
Ah, I see. The code example is using the generated `index.html` file of a new plugin, where Vite is used to serve it. So this could just be a development...
I think the problem with having a timeout is that correctness will be sacrificed for attempting to improve loading speeds. It is unclear what additional overhead an uncached `getRgbStringViaBrowser()` will...
I guess at the top of `_parseColor()`, we could add something like: ``` if (document.readyState !== 'complete') { return [232, 230, 227, 1] as Rgba; } ``` Or whatever the...
Thanks for taking a look. I think there are a couple of additional things here: 1. I thought the semantics differed between coordinates versus fixed coordinates ([as per the documentation](https://github.com/tradingview/lightweight-charts/blob/fdef142aa380b61ff05e0f55bd61367d7d1e53b9/src/model/iseries-primitive.ts#L9-L25))....
I tried defaulting back to coordinate if fixed coordinate does not exist: ``` --- a/src/gui/price-axis-widget.ts +++ b/src/gui/price-axis-widget.ts @@ -74,6 +74,7 @@ function buildPriceAxisViewsGetter( }; } +// eslint-disable-next-line complexity function recalculateOverlapping(views:...