Is there any way to prevent CandlestickChart.PriceText from disappearing when Crosshair is inactive? I have tried using a custom format but it doesn't seem to work.
<CandlestickChart.PriceText
format={({ value }) => {
'worklet'
if (value === '') {
return `${closingValue}`
}
return value
}}
/>
Is there any way to prevent CandlestickChart.PriceText from disappearing when Crosshair is inactive? I have tried using a custom format but it doesn't seem to work.
Thanks for any help :)