ae691ada79
I've decided instead to release a minimum viable product for v0.7.0 and get some feedback from the community, and most importantly some motivation as well to be able to keep working on magnetico as it currently feels like a Sisyphean where the development seem to never going to end...
16 lines
353 B
JavaScript
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"
|
|
}
|
|
});
|
|
};
|