removed unnecessary etc files

This commit is contained in:
Kristjan Komlosi
2019-11-03 12:50:47 +01:00
parent ffdb162ad4
commit 79d107595c
48 changed files with 3 additions and 609 deletions
+3 -4
View File
@@ -23,11 +23,10 @@ function graphSpectralData (obj, dom) {
var graphXTicks = [];
Object.keys(obj).forEach((element, index) => {
graphPoints.push([index, obj[element]]);
graphXTicks.push([index, element]);
graphPoints.push([index, obj[element]]); // build array of points
graphXTicks.push([index, element]); // build array of axis labels
});
console.log(graphPoints);
// console.log(graphPoints);
const options = {
grid: {color: 'white'},
xaxis: {ticks: graphXTicks}