I'm trying to do a similar thing in my code, but the fiddle seems to be gone. In my dataBound function I have the following code which seems to do nothing. chartData is a JSON object. I am able to set other fields using this style and format.
chart.options.tooltip.visible = chartData.tooltipVisible;
chart.options.tooltip.template = chartData.tooltipTemplate;
On a similar note, is it possible to change the series name at this point. I am trying to make my chart configurable where I can use the same options set up but display different charts based on data passed from the server. I have tried:
chart.options.series[i].name = chartData.dataName;