diff --git a/index.html b/index.html index 9b2505f..dc967b2 100644 --- a/index.html +++ b/index.html @@ -409,6 +409,7 @@

Documentation

  • Vertical lines
  • Pie charts specific options
  • Dynamic options in javascript
  • +
  • Changes
  • @@ -1165,6 +1166,30 @@

    10. Dynamic options in javascript

    +
    + + + +

    + 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';
    +    });
    +  });
    +          
    + + +
    + + +