Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 753 Bytes

2021-08-04-privacy.md

File metadata and controls

43 lines (33 loc) · 753 Bytes
descriptionnamedisplay_asorderpermalinkthumnail_githublayoutlanguagepage_type
How to set the privacy settings of Plotly graphs in MATLAB<sup>&reg;</sup>.
Privacy
chart_studio
3
matlab/privacy/
privacy.png
base
matlab
u-guide

Public Graphs

data = {... struct(... 'x', [0, 2, 4], ... 'y', [0, 4, 2], ... 'type', 'scatter')... }; plotly(data, struct('world_readable', true)); 

Private Graphs

data = {... struct(... 'x', [0, 2, 4], ... 'y', [0, 4, 2], ... 'type', 'scatter')... }; plotly(data, struct('world_readable', false)); 
close