You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating graph string like this:
var graph='a-->b\n'+
'b-->c\n';
then I assign string to the div. it works.
However if I try:
var graph='a-->b\n';
graph+='b-->c\n';
it does not work. I get text displayed on the screen and no graph.
I'd like to put in some variables and conditions into chart string, but does not seem like it is possible.
Thanks,
Radmila
The text was updated successfully, but these errors were encountered:
I'm creating graph string like this:
var graph='a-->b\n'+
'b-->c\n';
then I assign string to the div. it works.
However if I try:
var graph='a-->b\n';
graph+='b-->c\n';
it does not work. I get text displayed on the screen and no graph.
I'd like to put in some variables and conditions into chart string, but does not seem like it is possible.
Thanks,
Radmila
The text was updated successfully, but these errors were encountered: