I have a function to plot a bubble highchart. Among other things one argument of the function is a character label which is laid on top of the bubble, but which is also called in hcaes together with more information when holding the mouse over a bubble. I would like to edit this label without editing the data itself (or change it later in the pipe), that is, the original data is showed when hovering over the bubble, but what is laid on top of the bubble is edited. I have added the labels like this:
hc_plotOptions(series = list(
colorByPoint = TRUE,
dataLabels = list(allowOverlap =TRUE,enabled =TRUE, format=paste0('{point.', label, '}')))
Is this possible?