The following code works just fine on Wolfram Cloud:
Clear["Global`*"]
a[n_] := (2 n)/(n + 1)
mytable = Table[a[n], {n, 1, 20}];
ListPlot[mytable, PlotTheme -> "Marketing"]
And here is the result:
However, in WLJS I get the error message:
TypeError: Cannot read properties of undefined (reading 'type') at g2d.Graphics
and no image is produced.
Is there an issue with support for all PlotThemes?
Thanks in advance!
The following code works just fine on Wolfram Cloud:
And here is the result:
However, in WLJS I get the error message:
TypeError: Cannot read properties of undefined (reading 'type') at g2d.Graphicsand no image is produced.
Is there an issue with support for all
PlotThemes?Thanks in advance!