105 var t = line[0].split(/[- :]/);
106 var d = new Date(t[0], t[1]-1, t[2], t[3], t[4], t[5]);
107 d = Date.parse(d);
beside inserting line 107 in /opt/minepeon/http/js/charts.js
i changed the following in this file to get the units of the charts correct:
41 yAxis: [{
42 min: 0,
43 title: {
44 text: 'HashRate GH/s'
45 },
46 }, {
....
60 series: [{
61 name: 'GH/s Average',
62 color: '#FF0000',
63 type: 'spline',
64 lineWidth: 2,
65 zIndex: 10,
66 yAxis: 0
67 }, {
68 name: 'GH/s Acutal',
69 color: '#E8ADAA',
70 type: 'spline',
71 lineWidth: 1,
72 zIndex: 0,
73 yAxis: 0
74 }, {
...
107 d = Date.parse(d);
108 GHAvg.push([ d, parseFloat(line[1].replace(',', ''), 10) / 1000, ]);
109 GHActual.push([ d, parseFloat(line[2].replace(',', ''), 10) / 1000, ]);
110 DeviceTemp.push([ d, parseFloat(line[3].replace(',', ''), 10), ]);
beside i am a really javascript noob but i think this will do it.