dashboard optimizations
This commit is contained in:
parent
3530f0b475
commit
781aefa5e7
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user