I was trying to add a text box to the customEnvelope.efs that comes with esignal.
I tried to add the following line before the return statement, but it does not add the text box. Maybe my logic is not right. Any pointers would help.
I tried to add the following line before the return statement, but it does not add the text box. Maybe my logic is not right. Any pointers would help.
PHP Code:
drawTextRelative(3, xMidEnv, "MidEnv=" +formatPriceNumber(xMidEnv), Color.black, null, Text.FRAME | Text.VCENTER | Text.BOLD, "Arial", 12, "MidEnv");
return new Array (getSeries(xUpEnv), getSeries(xMidEnv), getSeries(xLoEnv));
Comment