Commit a06939954e7fbeb1fd3f753e932e5c0bf484987a
1 parent
5f1233ba
Exists in
master
and in
12 other branches
Fix bug with intervals color
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/InputOutput/IHMImpl/Tools/IHMParamManagerClass.php
... | ... | @@ -179,7 +179,7 @@ class IHMParamManagerClass |
179 | 179 | "min" => -PHP_FLOAT_MAX, |
180 | 180 | "max" => PHP_FLOAT_MAX, |
181 | 181 | "name" => "Inside", |
182 | - "color" => "[255,0,0]", | |
182 | + //"color" => "[255,0,0]", | |
183 | 183 | ), |
184 | 184 | ); |
185 | 185 | } |
... | ... | @@ -193,7 +193,7 @@ class IHMParamManagerClass |
193 | 193 | "min" => 1, |
194 | 194 | "max" => 1, |
195 | 195 | "name" => "Inside", |
196 | - "color" => "[255,0,0]", | |
196 | + //"color" => "[255,0,0]", | |
197 | 197 | ) |
198 | 198 | ); |
199 | 199 | $ytitle = $info["info"]["name"]; | ... | ... |