Call a number
Method 1: Using the Interactive → Open Link Connector
var number = '00972541234567'; // Replace with your actual phone number
return `tel:${number}`;
Method 2: Using the Interactive → Expression Connector
(data, liveData, event, element, player) => {
var number= '+1-00-0000'; // Replace with the desired phone number
window.open(`tel:${number}`);
}

