mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
Remove chart when nothing to show.
This commit is contained in:
parent
b7517b49ed
commit
aceb683d07
@ -212,41 +212,45 @@ $(function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$.getJSON('chart/home/recurring').success(function (data) {
|
$.getJSON('chart/home/recurring').success(function (data) {
|
||||||
$('#recurring').highcharts({
|
if (data[0].data.length == 0) {
|
||||||
title: {
|
$('#recurring').parent().parent().remove();
|
||||||
text: null
|
} else {
|
||||||
},
|
$('#recurring').highcharts({
|
||||||
credits: {
|
title: {
|
||||||
enabled: false
|
text: null
|
||||||
},
|
},
|
||||||
tooltip: {
|
credits: {
|
||||||
formatter: function () {
|
enabled: false
|
||||||
if (this.point.objType == 'paid') {
|
},
|
||||||
return this.key + ': \u20AC ' + Highcharts.numberFormat(this.y, 2);
|
tooltip: {
|
||||||
} else {
|
formatter: function () {
|
||||||
return this.key + ': ~\u20AC ' + Highcharts.numberFormat(this.y, 2);
|
if (this.point.objType == 'paid') {
|
||||||
}
|
return this.key + ': \u20AC ' + Highcharts.numberFormat(this.y, 2);
|
||||||
|
} else {
|
||||||
}
|
return this.key + ': ~\u20AC ' + Highcharts.numberFormat(this.y, 2);
|
||||||
},
|
|
||||||
plotOptions: {
|
|
||||||
pie: {
|
|
||||||
events: {
|
|
||||||
click: function (e) {
|
|
||||||
if (e.point.url != null) {
|
|
||||||
window.location = e.point.url;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
allowPointSelect: true,
|
|
||||||
cursor: 'pointer',
|
|
||||||
dataLabels: {
|
|
||||||
enabled: false
|
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
},
|
plotOptions: {
|
||||||
series: data
|
pie: {
|
||||||
});
|
events: {
|
||||||
|
click: function (e) {
|
||||||
|
if (e.point.url != null) {
|
||||||
|
window.location = e.point.url;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
allowPointSelect: true,
|
||||||
|
cursor: 'pointer',
|
||||||
|
dataLabels: {
|
||||||
|
enabled: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
series: data
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user