Skip to content

Commit

Permalink
Simplify nullified titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed Apr 28, 2024
1 parent 9e1a044 commit b186339
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion _assets/js/charting/business-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Highcharts.wrap(Highcharts.PlotLineOrBand.prototype, 'render', function (proceed
},{
labels: { format: '{value} %' },
opposite: true,
title: { text: undefined }
title: null
}]
});
}
Expand Down
6 changes: 3 additions & 3 deletions _assets/js/charting/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,16 +244,16 @@
x: 0,
y: -5
},
title: { text: null },
title: null,
},{
labels: {
align: 'right',
x: 0,
y: -5
},
title: { text: null }
title: null,
}],
subtitle: { text: null }
subtitle: null
}
}]
}
Expand Down
4 changes: 2 additions & 2 deletions _assets/js/charting/heat.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@
yAxis: [{
title: { text: "Leitungsnetz in km" }
},{
title: { text: undefined },
title: null,
opposite: true
},{
title: { text: undefined },
title: null,
opposite: true,
labels: { format: "{value} %" },
max: 20
Expand Down
4 changes: 2 additions & 2 deletions _assets/js/charting/water.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@
yAxis: [{
title: { text: "Leitungsnetz in km" }
},{
title: { text: undefined },
title: null,
opposite: true
},{
title: { text: undefined },
title: null,
opposite: true,
labels: { format: "{value} %" },
max: 14
Expand Down

0 comments on commit b186339

Please sign in to comment.