diff --git a/index.html b/index.html index 9b2505f..dc967b2 100644 --- a/index.html +++ b/index.html @@ -409,6 +409,7 @@
+ 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 : +
+ +
+ $('table.highchart')
+ .bind('highchartTable.beforeRender', function(event, highChartConfig) {
+ $.each(highChartConfig.yAxis, function (index, value) {
+ value.title.text = value.title.text || 'Valeur';
+ });
+ });
+
+
+
+