We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f006a7 commit 332a4d6Copy full SHA for 332a4d6
plotly/plotlyfig.m
@@ -237,6 +237,8 @@
237
238
% plotly reference
239
plotlyref = load('plotly_reference.mat');
240
+ % rmfield(plotlyref.pr, 'xbins');
241
+ % plotlyref.pr.xbins.size
242
243
% update the PlotlyRef property
244
obj.PlotlyReference = plotlyref.pr;
@@ -265,7 +267,7 @@
265
267
266
268
% strip the style keys from data
269
for d = 1:length(obj.data)
- if strcmpi(obj.data{d}.type, 'scatter')
270
+ if strcmpi(obj.data{d}.type, 'scatter') || strcmpi(obj.data{d}.type, 'histogram')
271
return
272
end
273
obj.data{d} = obj.stripkeys(obj.data{d}, obj.data{d}.type, 'style');
@@ -825,6 +827,7 @@ function delete(obj)
825
827
pr = obj.PlotlyReference;
826
828
829
% initialize output
830
+ % fields
831
stripped = fields;
832
833
% get fieldnames
0 commit comments