Puoi aprire il codice e modificarlo
HELP

...
aX = -30; bX = 30; aY = -2.5; bY = 2.5
Dx = 5; Dy = 0.5

titolo = "y=sin(x)  [blu],  y=sin(1.2*x)  [verde],  y= sin(x)+sin(1.2*x)  [rosso]"
Cax="brown"; Cgr="grey" 
...
function f(x) { y = Math.sin(x); return y }  
function g(x) { y = Math.sin(1.2*x); return y }
function h(x) { y = f(x)+g(x); return y }
function k(x) { y = 1/0; return y }
...
...

if(quadro >1 || quadro <1) {AY="";AX="";BX=""; AAX="";BBX="";AAY="";BBY=""}  // se "quadro" non e' 1 tolgo indicazioni lungo assi

// linew=2; linef=2; lineg=2; lineh=2; linek=2  e' lo spessore standard di linee e grafici; puoi cambiarlo
//                                             is the standard width of line and graphs; you can change it
// col_f="blue"; col_g="seagreen"; col_h="red"; col_k="orange"      colori standard; puoi cambiarli

linew=2; linef=1; lineg=1; lineh=4; linek=2
col_f="blue"; col_g="seagreen"; col_h="red"; col_k="orange"
...