You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone, I have a requirement in my Vue project where I need to display tooltips when clicking on the K-line chart. However, when I use subscribeClick to implement this, the crosshair does not appear on mobile devices.
` chart.subscribeClick((param: any) => {
const result = !showMobileKlineDetails.value;
if (result) {
const x = param.point.x;
const screenWidth = window.innerWidth;
Hello everyone, I have a requirement in my Vue project where I need to display tooltips when clicking on the K-line chart. However, when I use subscribeClick to implement this, the crosshair does not appear on mobile devices.
` chart.subscribeClick((param: any) => {
const result = !showMobileKlineDetails.value;
if (result) {
const x = param.point.x;
const screenWidth = window.innerWidth;
I also implemented tooltips display during movement by subscribing to subscribeCrosshairMove
Currently, this feature works fine in a desktop browser, but on mobile, the crosshair does not appear when using subscribeClick.
Please help me ! Thank you very much !
The text was updated successfully, but these errors were encountered: