We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6022332 commit 59c29f5Copy full SHA for 59c29f5
jquery.highchartTable.js
@@ -346,7 +346,7 @@
346
spacingTop: $table.data('graph-spacing-top') || 10,
347
height: $table.data('graph-height') || null,
348
zoomType: $table.data('graph-zoom-type') || null,
349
- polar: $table.data('graph-polar') ? $table.data('graph-polar') : undefined
+ polar: $table.data('graph-polar') || null
350
},
351
title: {
352
text: graphTitle
@@ -394,7 +394,7 @@
394
395
gridLineWidth: $table.data('graph-xaxis-gridLine-width') || 0,
396
gridLineDashStyle: $table.data('graph-xaxis-gridLine-style') || 'ShortDot',
397
- tickmarkPlacement: 'on',
+ tickmarkPlacement: $table.data('graph-xaxis-tickmark-placement') || 'between',
398
lineWidth: $table.data('graph-xaxis-line-width') || 0
399
400
yAxis: yAxisConfig,
0 commit comments