For example, consider a scenario where a dynamic chart contains values that need to be displayed in different formats for tooltips. Is it possible to pass a pre-formatted value along with the raw numeric value in some way?
For instance, in a sales Pie chart series, the value could be ["Store 1", 3665.54] and the tooltip could display $3,665.54.
pointFormat: '{series:name}: <b>${point.total}</b>'
However, a quantity may require a different format without the Dollar sign.
pointFormat: '{series:name}: <b>{point.total}</b>'
Alternatively, a Formatter function could be used, but what if the value is already pre-formatted as a String for display? How can a pre-formatted value be associated with a data point?