Mark Silverwood

Results 179 comments of Mark Silverwood

I understand your thoughts that it would be more helpful if it found and returned the closest match, however the API is specifically designed to return `null` when there isn't...

A plugin would actually be able to access the data for the associated series. The `attached` lifecycle hook provides the ISeriesAPI for the series and the api does include a...

You could explore the usage of a plugin to expose this data for reading the price scale values. For example: https://github.com/SlicedSilver/lwc-plugin-visible-price-range-util If you want to control the price scale range...

Thanks @pkquell The library does appear to have an issue when the data value becomes very large. The test value is less than `Number.MAX_SAFE_INTEGER` so it is something that should...

> It's something wrong here 🙂 > > ![image](https://private-user-images.githubusercontent.com/1572087/323563772-3d678a77-d7ae-4f5b-ab0a-8f0dea6aa26d.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MTM0MzY0MTQsIm5iZiI6MTcxMzQzNjExNCwicGF0aCI6Ii8xNTcyMDg3LzMyMzU2Mzc3Mi0zZDY3OGE3Ny1kN2FlLTRmNWItYWIwYS04ZjBkZWE2YWEyNmQucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI0MDQxOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNDA0MThUMTAyODM0WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9YTEwZWFhYjM3YWFkMmNiZWJlNGNhMjYxNGZkNTI5NGM3MmUxOGZkOWJkNWIxN2Q2OWU2OGRkMGRlNTFiYTA4MiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QmYWN0b3JfaWQ9MCZrZXlfaWQ9MCZyZXBvX2lkPTAifQ.fhvVLm2haFcJskyjEaMvC5l6scs2Sw0G22N6D8P7xgo) 'QA' testing coming soon. 😅 Been focused on the API design review first. Agree that we should only have a single...

1. After an error of using `moveToPane(-1)` then you can no longer move the pane. ```js // ...create a normal chart above... volumeSeries = chart.addHistogramSeries( { priceFormat: { type: 'volume',...

[Minor] When dragging the pane separator, the time scale width can change. Maybe we would want to 'fix' the time scale width while dragging? Let's only do this if it...

In principle this is similar to these two plugin examples: - https://tradingview.github.io/lightweight-charts/plugin-examples/plugins/brushable-area-series/example/ - https://tradingview.github.io/lightweight-charts/plugin-examples/combined-examples/delta-brushable/ and the code for these examples is within this folder: https://github.com/tradingview/lightweight-charts/tree/master/plugin-examples and finally some documentation on...

Currently plugins aren't supported with the Android wrapper library, and there isn't a built-in way to achieve that exact appearance without the usage of Plugins. You could look into using...

Could you provide a screenshot of the desired implementation?