We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ee13d commit 8b361b2Copy full SHA for 8b361b2
plotly/plotly_offline_aux/getplotlyoffline.m
@@ -29,4 +29,10 @@ function getplotlyoffline(plotly_bundle_url)
29
file_id = fopen(bundle_file, 'w');
30
fprintf(file_id, '%s', bundle);
31
fclose(file_id);
32
+
33
+ % success!
34
+ fprintf(['\nSuccess! You can generate your first offline ', ...
35
+ 'graph\nusing the ''offline'' flag of fig2plotly as ', ...
36
+ 'follows:\n\n>> plot(1:10); fig2plotly(gcf, ', ...
37
+ '''offline'', true);\n\n'])
38
end
0 commit comments