Skip to content

Commit 59c29f5

Browse files
author
Mathieu Cottet
committed
Use default values of highcharts for polar and tickmarkPlacement options
1 parent 6022332 commit 59c29f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery.highchartTable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
spacingTop: $table.data('graph-spacing-top') || 10,
347347
height: $table.data('graph-height') || null,
348348
zoomType: $table.data('graph-zoom-type') || null,
349-
polar: $table.data('graph-polar') ? $table.data('graph-polar') : undefined
349+
polar: $table.data('graph-polar') || null
350350
},
351351
title: {
352352
text: graphTitle
@@ -394,7 +394,7 @@
394394
},
395395
gridLineWidth: $table.data('graph-xaxis-gridLine-width') || 0,
396396
gridLineDashStyle: $table.data('graph-xaxis-gridLine-style') || 'ShortDot',
397-
tickmarkPlacement: 'on',
397+
tickmarkPlacement: $table.data('graph-xaxis-tickmark-placement') || 'between',
398398
lineWidth: $table.data('graph-xaxis-line-width') || 0
399399
},
400400
yAxis: yAxisConfig,

0 commit comments

Comments
 (0)