From a91b4bcb9ca0cc5c6b8e393f4c6017ea63eeccad Mon Sep 17 00:00:00 2001
From: Adrien Gallou
+ In issue 8 we removed the default value for the graph-yaxis-X-title-text attribute. If you were using it, here is an example of how you can get the default value back :
+ Documentation
10. Dynamic options in javascript
+ 11. Changes
+
+ $('table.highchart')
+ .bind('highchartTable.beforeRender', function(event, highChartConfig) {
+ $.each(highChartConfig.yAxis, function (index, value) {
+ value.title.text = value.title.text || 'Valeur';
+ });
+ });
+
+
+
+