magnetico/cmd/magneticow/data/static/scripts/statistics.js
2018-03-02 18:56:17 +00:00

16 lines
353 B
JavaScript

"use strict";
window.onload = function() {
Plotly.newPlot("discoveryRateGraph", discoveryRateData, {
title: "New Discovered Torrents Per Day in the Past 30 Days",
xaxis: {
title: "Days",
tickformat: "%d %B"
},
yaxis: {
title: "Amount of Torrents Discovered"
}
});
};