summaryrefslogtreecommitdiff
path: root/static/js/kosten.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/kosten.js')
-rw-r--r--static/js/kosten.js18
1 files changed, 11 insertions, 7 deletions
diff --git a/static/js/kosten.js b/static/js/kosten.js
index 936e38c..7d6582c 100644
--- a/static/js/kosten.js
+++ b/static/js/kosten.js
@@ -26,7 +26,8 @@
weekdays: ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],
rangeSelectorFrom: 'von',
rangeSelectorTo: 'bis',
- rangeSelectorZoom: null
+ rangeSelectorZoom: null,
+ numericSymbols: null
}
});
};
@@ -152,9 +153,6 @@
var x$;
x$ = $(this);
x$.highcharts('StockChart', {
- title: {
- text: null
- },
credits: {
enabled: false
},
@@ -169,7 +167,11 @@
},
plotOptions: {
series: {
- stacking: 'normal'
+ stacking: 'normal',
+ marker: {
+ enabled: false,
+ radius: 2
+ }
}
},
chart: {
@@ -192,7 +194,10 @@
},
yAxis: {
reversedStacks: false,
- tickInterval: 250
+ labels: {
+ x: 5,
+ align: 'left'
+ }
},
series: [
{
@@ -211,7 +216,6 @@
}
],
tooltip: {
- shared: true,
formatter: function(){
var header, body, p, footer;
header = "<span style=\"font-size: 10px\">" + df('%B %Y', this.x) + "</span><br/>";