Skip to content

Commit

Permalink
Added graph generation message
Browse files Browse the repository at this point in the history
  • Loading branch information
Efnilite committed Jan 29, 2023
1 parent fe648e2 commit d37cecc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/natives/graphs.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ const graphFuns = {

new Chart(document.getElementById(`${createCanvas()}`), config);

log("Generating graph... Open the Generated Graphs menu to see the graph.");

return true;
},
plot_functions: async (a, b, increment, ...fns) => {
Expand Down Expand Up @@ -90,7 +92,9 @@ const graphFuns = {
};

new Chart(document.getElementById(`${createCanvas()}`), config);


log("Generating graph... Open the Generated Graphs menu to see the graph.");

return true;
}
}
Expand Down

0 comments on commit d37cecc

Please sign in to comment.