In the multiplot layout, which is using the compose ... endcompose environment, the options from other subplots are used globally, although only desired for one subplot. An example would be the logscale options:
compose -multiplot=1,3
plot exp(x) -set aspect=3 ## will also use ylog
subplot
plot exp(x) -set ylog
subplot
plot exp(x) -set nologscale
endcompose
Analysis:
This problem can be fixed by introducing superglobal parameters, which are also evaluated in multiplot layout and standard global parameters, which are only evaluated for the current subplot.
Implementation:
The fix was implemented as proposed by the analysis. Implementation tests were passed successfully.
Documentation:
Not needed - Bug fix.
Tests:
The fix was added to the automatic tests. No deviation detected. Bug fix implemented successfully.
Anonymous
Diff:
Diff:
Diff:
Diff: