How can I display tooltip text in the chart based on a specific condition? I only want to show the tooltip text if the value is not equal to 0.
Series.columns.template.tooltipText = `{valueY}s`;
The tooltip currently displays the value of {valueY}
, but I would like it to be hidden when {valueY}
equals 0.