We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453d1b6 commit 3932dbcCopy full SHA for 3932dbc
plotly/plotly_aux/plotly.m
@@ -22,7 +22,7 @@
22
offline = structargs.(f{idx});
23
offline_given = offline;
24
else
25
- offline = false;
+ offline = true;
26
27
end
28
plotly/plotlyfig.m
@@ -513,13 +513,16 @@ function validate(obj)
513
args.filename = obj.PlotOptions.FileName;
514
args.fileopt = obj.PlotOptions.FileOpt;
515
args.world_readable = obj.PlotOptions.WorldReadable;
516
+ args.offline = obj.PlotOptions.Offline;
517
518
%layout
519
args.layout = obj.layout;
520
521
if obj.PlotOptions.WriteFile
522
+
523
%send to plotly
524
if ~obj.PlotOptions.Offline
525
526
response = plotly(obj.data, args);
527
528
%update response
0 commit comments