File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 299299 var marginRight = $table . data ( 'graph-margin-right' ) ;
300300 var marginBottom = $table . data ( 'graph-margin-bottom' ) ;
301301 var marginLeft = $table . data ( 'graph-margin-left' ) ;
302+
303+ var xAxisLabelsEnabled = $table . data ( 'graph-xaxis-labels-enabled' ) ;
302304
303305 var highChartConfig = {
304306 colors : colors ,
344346 labels :
345347 {
346348 rotation : $table . data ( 'graph-xaxis-rotation' ) || 0 ,
347- align : $table . data ( 'graph-xaxis-align' ) || 'center'
349+ align : $table . data ( 'graph-xaxis-align' ) || 'center' ,
350+ enabled : typeof xAxisLabelsEnabled != 'undefined' ? xAxisLabelsEnabled : true
348351 } ,
349352 startOnTick : $table . data ( 'graph-xaxis-start-on-tick' ) ,
350353 endOnTick : $table . data ( 'graph-xaxis-end-on-tick' ) ,
You can’t perform that action at this time.
0 commit comments