summaryrefslogtreecommitdiffstats
path: root/data/templates/stats/profit_per_weekday.html
blob: d9f3e43108717a3ba8e1cba0aa18d0f7e7de912c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<h1>Profit per Weekday (last 8 weeks, members only)</h1>
<div id="placeholder" style="width:800px;height:400px;float: left;"></div>

<script type="text/javascript">
$(function () {
    var data = {{{DATA}}};

	var options = {
		legend: {
			show: false
		},
		series: {
			pie: {
				show: true,
				label: {
					show: true,
					formatter: function(label, series) {
						return "<div style=\"font-size:x-small;text-align:center;padding:2px;color:"+series.color+";\">"+label+"<br/>"+series.data[0][1]+"€ ("+Math.round(series.percent)+"%)</div>";
					}
				}
			}
		}
	}

	if (data.length > 0)
		$.plot($("#placeholder"), data, options);
	else
		$.plot($("#placeholder"), [], options);
});
</script>