Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ <h1>Documentation</h1>
<li><a href="#doc-verticallines">Vertical lines</a></li>
<li><a href="#doc-pie">Pie charts specific options</a></li>
<li><a href="#doc-javascript">Dynamic options in javascript</a></li>
<li><a href="#doc-changes">Changes</a></li>
</ol>


Expand Down Expand Up @@ -1165,6 +1166,30 @@ <h2>10. Dynamic options in javascript</h2>

</section>

<section id="doc-changes">

<div class="page-header">
<h2>11. Changes</h2>
</div>

<p>
In issue <a href="https://github.com/highchartTable/jquery-highchartTable-plugin/issues/8">8</a> 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 :
</p>

<pre class="prettyprint">
$('table.highchart')
.bind('highchartTable.beforeRender', function(event, highChartConfig) {
$.each(highChartConfig.yAxis, function (index, value) {
value.title.text = value.title.text || 'Valeur';
});
});
</pre>


</section>



</section>


Expand Down