dashboard optimizations

This commit is contained in:
Denys Konovalov 2023-03-01 11:52:21 +01:00
parent a6dc00a8dc
commit 098b640d87
2 changed files with 18 additions and 40 deletions

@ -157,6 +157,13 @@ aliases:
// Use axis to trigger tooltip // Use axis to trigger tooltip
type: 'shadow' // 'shadow' as default; can also be 'line' or 'shadow' type: 'shadow' // 'shadow' as default; can also be 'line' or 'shadow'
}, },
formatter: function (params, ticket, callback) {
var output = "";
params.forEach(function(param) {
output = output + "<b>" + param.seriesName + ":</b> " + param.value + (param.seriesName == "Anteil Mädchen" ? "%" : "") + "<br>";
});
return output;
}
}, },
xAxis: { xAxis: {
data: data['schuelerzahlen'].map(function (item) { data: data['schuelerzahlen'].map(function (item) {
@ -191,41 +198,6 @@ aliases:
type: "inside" type: "inside"
} }
], ],
/*visualMap: {
top: 50,
right: 10,
precision: 1,
pieces: [
{
gt: 0.9,
lte: 1.0,
color: "#005da9",
},
{
gt: 1.0,
lte: 1.5,
color: "#0b9834"
},
{
gt: 1.5,
lte: 2.0,
color: "#93CE07"
},
{
gt: 2.0,
lte: 2.5,
color: "#FBDB0F"
},
/*{
gt: 2.0,
lte: 2.5,
color: "#FC7D02"
},
],
outOfRange: {
color: "#999"
}
},*/
series: [{ series: [{
name: "Jungen", name: "Jungen",
type: "bar", type: "bar",
@ -250,7 +222,7 @@ aliases:
yAxis: 500 yAxis: 500
} }
] ]
} },
}, },
{ {
name: "Mädchen", name: "Mädchen",
@ -285,6 +257,12 @@ aliases:
data: data['schuelerzahlen'].map(function (item) { data: data['schuelerzahlen'].map(function (item) {
return item['all']; return item['all'];
}), }),
lineStyle: {
normal: {
width: 0,
}
},
symbolSize: 0,
markLine: { markLine: {
silent: true, silent: true,
lineStyle: { lineStyle: {
@ -300,13 +278,13 @@ aliases:
{ {
yAxis: 500 yAxis: 500
} }
] ],
} }
}, },
{ {
name: "Anteil Mädchen", name: "Anteil Mädchen",
type: "line", type: "line",
color: "#dc9870", color: "#4b4b4b",
yAxisIndex: 1, yAxisIndex: 1,
data: data['schuelerzahlen'].map(function (item) { data: data['schuelerzahlen'].map(function (item) {
return (item['girls']/item['all']*100).toFixed(2);; return (item['girls']/item['all']*100).toFixed(2);;

@ -161,8 +161,8 @@
}, },
{ {
"year":2020, "year":2020,
"all": 0, "all": 535,
"girls": 0 "girls": 150
}, },
{ {
"year": 2021, "year": 2021,