-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathextractAxisData.m
285 lines (214 loc) · 9.92 KB
/
extractAxisData.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
function [axis, exponentFormat] = extractAxisData(obj,axisData,axisName)
% extract information related to each axis
% axisData is the data extrated from the figure, axisName take the
% values 'x' 'y' or 'z'
%=========================================================================%
%
% AXIS INITIALIZATION
%
%=========================================================================%
%-general axis settings-%
axisColor = 255 * eval(sprintf('axisData.%sColor', axisName));
axisColor = sprintf('rgb(%f,%f,%f)', axisColor);
lineWidth = max(1,axisData.LineWidth*obj.PlotlyDefaults.AxisLineIncreaseFactor);
exponentFormat = eval(sprintf('axisData.%sAxis.Exponent', axisName));
axis.side = eval(sprintf('axisData.%sAxisLocation', axisName));
axis.zeroline = false;
axis.autorange = false;
axis.linecolor = axisColor;
axis.linewidth = lineWidth;
axis.exponentformat = obj.PlotlyDefaults.ExponentFormat;
%-------------------------------------------------------------------------%
%-general tick settings-%
tickRotation = eval(sprintf('axisData.%sTickLabelRotation', axisName));
tickLength = min(obj.PlotlyDefaults.MaxTickLength,...
max(axisData.TickLength(1)*axisData.Position(3)*obj.layout.width,...
axisData.TickLength(1)*axisData.Position(4)*obj.layout.height));
axis.tickfont.size = axisData.FontSize;
axis.tickfont.family = matlab2plotlyfont(axisData.FontName);
axis.tickfont.color = axisColor;
axis.ticklen = tickLength;
axis.tickcolor = axisColor;
axis.tickwidth = lineWidth;
axis.tickangle = -tickRotation;
switch axisData.TickDir
case 'in'
axis.ticks = 'inside';
case 'out'
axis.ticks = 'outside';
end
%-------------------------------------------------------------------------%
%-set axis grid-%
isGrid = sprintf('axisData.%sGrid', axisName);
isMinorGrid = sprintf('axisData.%sMinorGrid', axisName);
if strcmp(isGrid, 'on') || strcmp(isMinorGrid, 'on')
axis.showgrid = true;
axis.gridwidth = lineWidth;
else
axis.showgrid = false;
end
%-------------------------------------------------------------------------%
%-axis grid color-%
try
gridColor = 255*axisData.GridColor;
gridAlpha = axisData.GridAlpha;
axis.gridcolor = sprintf('rgba(%f,,%f,%f,%f)', gridColor, gridAlpha);
catch
axis.gridcolor = axisColor;
end
%-------------------------------------------------------------------------%
%-axis type-%
axis.type = eval(sprintf('axisData.%sScale', axisName));
%=========================================================================%
%
% SET TICK LABELS
%
%=========================================================================%
%-get tick label data-%
tickLabels = eval(sprintf('axisData.%sTickLabel', axisName));
tickValues = eval(sprintf('axisData.%sTick', axisName));
if isduration(tickValues), tickValues = datenum(tickValues); end
%-------------------------------------------------------------------------%
%-there is not tick label case-%
if isempty(tickValues) && isempty(tickLabels)
axis.ticks = '';
axis.showticklabels = false;
axis.autorange = true;
switch axisData.Box
case 'on'
axis.mirror = true;
case 'off'
axis.mirror = false;
end
%-------------------------------------------------------------------------%
%-there is tick labels-%
else
%---------------------------------------------------------------------%
%-some tick label settings-%
axisLim = eval( sprintf('axisData.%sLim', axisName) );
if isduration(axisLim), axisLim = datenum(axisLim); end
switch axisData.Box
case 'on'
axis.mirror = 'ticks';
case 'off'
axis.mirror = false;
end
if isnumeric(axisLim)
if strcmp(axis.type, 'linear')
axis.range = axisLim;
elseif strcmp(axis.type, 'log')
axis.range = log10(axisLim);
end
else
axis.autorange = true;
end
axis.showticklabels = true;
%---------------------------------------------------------------------%
%-set tick labels by using tick values and tick texts-%
if ~isempty(tickValues) && ~isempty(tickLabels)
axis.tickmode = 'array';
axis.tickvals = tickValues;
axis.ticktext = tickLabels;
%---------------------------------------------------------------------%
%-set tick labels by using only tick values-%
elseif ~isempty(tickValues) && isempty(tickLabels)
axis.tickmode = 'array';
axis.tickvals = tickValues;
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%
%
% TODO: determine if following code piece is necessary. For this we need
% to test fig2plotly with more examples
%
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%
% %-LOG TYPE-%
% if strcmp(axis.type,'log')
% axis.range = log10(axisLim);
% axis.autotick = true;
% axis.nticks = eval(['length(axisData.' axisName 'Tick) + 1;']);
% %---------------------------------------------------------------------%
% %-LINEAR TYPE-%
% elseif strcmp(axis.type,'linear')
% %-----------------------------------------------------------------%
% % %-get tick label mode-%
% % tickLabelMode = eval(['axisData.' axisName 'TickLabelMode;']);
% % %-----------------------------------------------------------------%
% % %-AUTO MODE-%
% % if strcmp(tickLabelMode,'auto')
% %-------------------------------------------------------------%
% if isnumeric(axisLim)
% %-axis range-%
% axis.range = axisLim;
% %-axis tickvals-%
% axis.tickvals = tick;
% %-------------------------------------------------------------%
% elseif isduration(axisLim)
% [temp,type] = convertDuration(axisLim);
% if (~isduration(temp))
% axis.range = temp;
% axis.type = 'duration';
% axis.title = type;
% else
% nticks = eval(['length(axisData.' axisName 'Tick)-1;']);
% delta = 0.1;
% axis.range = [-delta nticks+delta];
% axis.type = 'duration - specified format';
% end
% %-------------------------------------------------------------%
% elseif isdatetime(axisLim)
% axis.range = convertDate(axisLim);
% axis.type = 'date';
% else
% % data is a category type other then duration and datetime
% end
% %-------------------------------------------------------------%
% if ~isnumeric(axisLim)
% %-axis autotick-%
% axis.autotick = true;
% %-axis numticks-%
% axis.nticks = eval(['length(axisData.' axisName 'Tick)+1']);
% end
% end
% end
%+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%
end
end
%-------------------------------------------------------------------------%
%-axis direction-%
axisDirection = eval(sprintf('axisData.%sDir', axisName));
if strcmp(axisDirection,'reverse')
axis.range = [axis.range(2) axis.range(1)];
end
%=========================================================================%
%
% SET AXIS LABEL
%
%=========================================================================%
%-get label data-%
label = eval(sprintf('axisData.%sLabel', axisName));
labelData = get(label);
%-------------------------------------------------------------------------%
%-STANDARDIZE UNITS-%
fontunits = get(label,'FontUnits');
set(label,'FontUnits','points');
%-------------------------------------------------------------------------%
%-title label settings-%
if ~isempty(labelData.String)
axis.title = parseString(labelData.String,labelData.Interpreter);
end
axis.titlefont.color = sprintf('rgb(%f,%f,%f)', 255*labelData.Color);
axis.titlefont.size = labelData.FontSize;
axis.titlefont.family = matlab2plotlyfont(labelData.FontName);
%-------------------------------------------------------------------------%
%-REVERT UNITS-%
set(label,'FontUnits',fontunits);
%-------------------------------------------------------------------------%
%-set visibility conditions-%
if strcmp(axisData.Visible,'on')
axis.showline = true;
else
axis.showticklabels = false;
axis.showline = false;
axis.ticks = '';
end
%-------------------------------------------------------------------------%
end