Skip to content

Commit

Permalink
xaxis label autorotation fix
Browse files Browse the repository at this point in the history
use undefined rather than 0 or center.
  • Loading branch information
des2k7 committed May 5, 2015
1 parent b0df9fa commit 55bec56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.highchartTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@
},
labels:
{
rotation: $table.data('graph-xaxis-rotation') || 0,
align: $table.data('graph-xaxis-align') || 'center',
rotation: $table.data('graph-xaxis-rotation') || undefined,
align: $table.data('graph-xaxis-align') || undefined,
enabled: typeof xAxisLabelsEnabled != 'undefined' ? xAxisLabelsEnabled : true,
style: xAxisLabelStyle
},
Expand Down

0 comments on commit 55bec56

Please sign in to comment.