Commit 1e81724ed8323e1770524688e7b631030aa3f5a9
1 parent
5456cf57
Exists in
master
and in
53 other branches
activated legend ok
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
src/InputOutput/IHMImpl/ParamInfo/IHMInputOutputParamInfoClass.php
... | ... | @@ -399,6 +399,11 @@ class IHMInputOutputParamInfoClass implements InputOutputInterface |
399 | 399 | $scale = $axisNode->getScale(); |
400 | 400 | if (isset($scale)) |
401 | 401 | $result_array['axis-scale'] = $scale; |
402 | + | |
403 | + $showLegend = $axisNode->getShowLegend(); | |
404 | + if (!empty($showLegend)) | |
405 | + $result_array['axis-legend-activated'] = ($showLegend == "true"); | |
406 | + | |
402 | 407 | $rangeNode = $axisNode->getRange(); |
403 | 408 | if (isset($rangeNode)) { |
404 | 409 | $rangeMin = $rangeNode->getMin(); | ... | ... |