Commit 9937b4880ec0712a8f8222fce5f11809b3bd6307

Authored by Benjamin Renard
1 parent 3182799a

Modify default plot configuration

config/plotConfig.xml
... ... @@ -2,7 +2,7 @@
2 2 <root>
3 3 <default>
4 4 <page dimension="ISO A4" orientation="landscape" mode="color" dpi="90">
5   - <font name="sans-serif" size="12" />
  5 + <font name="sans-serif" size="8" />
6 6 <margin x="15" y="20" /> <!-- in mm -->
7 7 </page>
8 8 <panel resolution="3000" backgroundColor="[255,255,255]"> <!-- charSizeUnits defines space to set all around plot area -->
... ...
src/InputOutput/IHMImpl/ParamInfo/IHMInputOutputParamInfoClass.php
... ... @@ -46,7 +46,7 @@ class IHMInputOutputParamInfoClass implements InputOutputInterface
46 46 $paramInfoFilePath = IHMConfigClass::getLocalParamInfoPath().'info_'.$input->paramId.".xml";
47 47  
48 48 if (!file_exists($paramInfoFilePath))
49   - throw new Exception("Cannot find parameter info file " . $paramInfoFilePath);
  49 + throw new Exception("Cannot find parameter info file");
50 50  
51 51 $this->paramInfoData->setFilePath($paramInfoFilePath);
52 52 break;
... ...