1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2025-06-29 11:56:26 +00:00

* Explicitly close ResultSet in DatabaseUpdate process to prevent not being able to update the Database due to it being locked. Closes #6.

* Don't create backup of non-existing database if we're creating a fresh one.
* Changed the style of HTML exports slightly.
This commit is contained in:
2016-07-26 21:20:42 +02:00
parent fad822d53d
commit eb9715cb09
3 changed files with 26 additions and 8 deletions

View File

@ -98,6 +98,15 @@
{name: 'Others', y: {{authors.count.others}}, drilldown: 'Others'},
]
}],
plotOptions: {
pie: {
dataLabels: {
style: {
width: '150px',
},
},
},
},
drilldown: {
series: [{
name: 'Authors',
@ -152,9 +161,11 @@
});
</script>
<span id="heatmap" style="width: 400px; height: 500px;"></span>
<span id="heatmap" style="width: 500px; height: 600px;"></span>
{{#count.dialogs}}<span id="chart_chat_types" style="width: 400px; height: 500px;"></span>{{/count.dialogs}}
<span id="chart_message_types" style="width: 400px; height: 500px;"></span>
<span id="chart_media_types" style="width: 400px; height: 500px;"></span>
<span id="chart_authors" style="width: 400px; height: 500px;"></span>
{{#count.dialogs}}
<span id="chart_chat_types" style="width: 600px; height: 500px;"></span>
{{/count.dialogs}}
<span id="chart_message_types" style="width: 600px; height: 500px;"></span>
<span id="chart_media_types" style="width: 600px; height: 500px;"></span>
<span id="chart_authors" style="width: 600px; height: 500px;"></span>