Skip to content

Commit c60c1c5

Browse files
committed
Merge pull request #48 from agallou/remove-french-default-value
remove default value for the data-graph-yaxis-X-title-text attribute
2 parents 7ea4d4b + 6de9137 commit c60c1c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.highchartTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
for (yAxisNum=1 ; yAxisNum <= nbYaxis ; yAxisNum++) {
271271
var yAxisConfigCurrentAxis = {
272272
title: {
273-
text: typeof $table.data('graph-yaxis-'+yAxisNum+'-title-text') != 'undefined' ? $table.data('graph-yaxis-'+yAxisNum+'-title-text') : "Valeur"
273+
text: typeof $table.data('graph-yaxis-'+yAxisNum+'-title-text') != 'undefined' ? $table.data('graph-yaxis-'+yAxisNum+'-title-text') : null
274274
},
275275
max: typeof $table.data('graph-yaxis-'+yAxisNum+'-max') != 'undefined' ? $table.data('graph-yaxis-'+yAxisNum+'-max') : null,
276276
min: typeof $table.data('graph-yaxis-'+yAxisNum+'-min') != 'undefined' ? $table.data('graph-yaxis-'+yAxisNum+'-min') : null,

0 commit comments

Comments
 (0)