String variables cannot be used as plotting legends
Framework for numerical computations, data analysis and visualisation
Brought to you by:
numere
Something like
plot _extWifi(:, 1:2) sLegend1, _extWifi(:, 3:4) sLegend2, _extWifi(:, 5:6) sLegend3
is currently not possible.
Analysis:
The string variables are not read before the call to addLegends(). Add the following lines
if (_data.containsStringVars(sFunc))
_data.getStringValues(sFunc);
before the call to addLegends().
Implementation:
The implementation was done as proposed by the analysis. Implementation tests were passed successfully.
Documentation:
The fox was noted in the changes log. Further documentation not needed.
Tests:
The fix was tested in productive environment. No deviations detected. Bug fix implemented successfully.
Anonymous
Diff:
Diff:
Diff:
Diff: