Skip to content

Commit b5cfd0e

Browse files
committed
Fixed statistics graphs
1 parent 02581f1 commit b5cfd0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/bootstrap/statistics/graphs/default.tpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
$(function () {
33
var hashChart = Morris.Line({
44
element: 'hashrate-area-chart',
5-
data: {$YOURMININGSTATS},
5+
data: {$YOURMININGSTATS nofilter},
66
xkey: 'time',
77
ykeys: ['hashrate'],
88
labels: ['Hashrate'],
@@ -17,7 +17,7 @@ $(function () {
1717
1818
var workersChart = Morris.Line({
1919
element: 'workers-area-chart',
20-
data: {$YOURMININGSTATS},
20+
data: {$YOURMININGSTATS nofilter},
2121
xkey: 'time',
2222
ykeys: ['workers'],
2323
labels: ['Workers'],
@@ -32,7 +32,7 @@ $(function () {
3232
3333
var shareCharts= Morris.Line({
3434
element: 'sharerate-area-chart',
35-
data: {$YOURMININGSTATS},
35+
data: {$YOURMININGSTATS nofilter},
3636
xkey: 'time',
3737
ykeys: ['sharerate'],
3838
labels: ['Sharerate'],

0 commit comments

Comments
 (0)