Commit 591ba09d4a12fdec68bcaeb93877e1868c1ad37f
1 parent
870c9b42
Exists in
master
and in
9 other branches
#11372 - Done.
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
src/InputOutput/IHMImpl/Params/PlotImpl/IHMInputOutputParamsPlotClass.php
... | ... | @@ -740,14 +740,14 @@ class IHMInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
740 | 740 | { |
741 | 741 | $histogram2DNodes = array(); |
742 | 742 | if (count($indexes) == 0) { |
743 | - $histogram2DNode = $paramNode->addHistogram2DSerie($paramData->{'param-drawing-object'}->{'serie-yaxis'}, -1, $xId); | |
743 | + $histogram2DNode = $paramNode->addHistogram2DSerie($paramData->{'param-drawing-object'}->{'histo2d-yaxis'}, -1, $xId); | |
744 | 744 | if (isset($histogram2DNode)) { |
745 | 745 | $histogram2DNode->setId($paramData->{'id'}); |
746 | 746 | $histogram2DNodes[] = $histogram2DNode; |
747 | 747 | } |
748 | 748 | } |
749 | 749 | foreach ($indexes as $index) { |
750 | - $histogram2DNode = $paramNode->addHistogram2DSerie($paramData->{'param-drawing-object'}->{'serie-yaxis'}, $index, $xId); | |
750 | + $histogram2DNode = $paramNode->addHistogram2DSerie($paramData->{'param-drawing-object'}->{'histo2d-yaxis'}, $index, $xId); | |
751 | 751 | if (isset($histogram2DNode)) { |
752 | 752 | if (count($indexes) == 1) |
753 | 753 | $histogram2DNode->setId($paramData->{'id'}); |
... | ... | @@ -804,14 +804,14 @@ class IHMInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
804 | 804 | } |
805 | 805 | |
806 | 806 | if (count($indexes) == 0) { |
807 | - $histogram1DNode = $paramNode->addHistogram1DSerie($paramData->{'param-drawing-object'}->{'serie-yaxis'}, -1, $color); | |
807 | + $histogram1DNode = $paramNode->addHistogram1DSerie($paramData->{'param-drawing-object'}->{'histo1d-yaxis'}, -1, $color); | |
808 | 808 | if (isset($histogram1DNode)) { |
809 | 809 | $histogram1DNode->setId($paramData->{'id'}); |
810 | 810 | $histogram1DNodes[] = $histogram1DNode; |
811 | 811 | } |
812 | 812 | } |
813 | 813 | foreach ($indexes as $index) { |
814 | - $histogram1DNode = $paramNode->addHistogram1DSerie($paramData->{'param-drawing-object'}->{'serie-yaxis'}, $index, $color); | |
814 | + $histogram1DNode = $paramNode->addHistogram1DSerie($paramData->{'param-drawing-object'}->{'histo1d-yaxis'}, $index, $color); | |
815 | 815 | if (isset($histogram1DNode)) { |
816 | 816 | if (count($indexes) == 1) |
817 | 817 | $histogram1DNode->setId($paramData->{'id'}); | ... | ... |