I'm trying to change the chart tooltip each time a different series of data is displayed, to match the units of the data (some data are measured in inches, other data in degrees).
or
It seems that changing the tooltip has no effect whatsoever on the chart.
I've included a link to the jsFiddle in which I am working: http://jsfiddle.net/raltman/4j7LV/22/
I've also tried using the setOptions methods described in the chart API documentation; the result of which was that the chart never even rendered on page.
How should this be handled?
Thanks.
chart.options.tooltip.template = "{0}°";
chart.options.tooltip.template = "{0} in.";
I've included a link to the jsFiddle in which I am working: http://jsfiddle.net/raltman/4j7LV/22/
I've also tried using the setOptions methods described in the chart API documentation; the result of which was that the chart never even rendered on page.
How should this be handled?
Thanks.