Skip to content
Snippets Groups Projects

Fix default string values with floats for float types

Merged Flavio TARSETTI requested to merge 15_fixes_string_to_floats into master
3 files
+ 14
18
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -17,22 +17,22 @@
"description": "The label of the Y-axis (vertical)"
},
"xlim-left":{
"default": "0.0",
"default": 0.0,
"type": "float64",
"description": ""
},
"xlim-right":{
"default": "100.0",
"default": 100.0,
"type": "float64",
"description": ""
},
"ylim-bottom":{
"default": "0.0",
"default": 0.0,
"type": "float64",
"description": ""
},
"ylim-top":{
"default": "100.0",
"default": 100.0,
"type": "float64",
"description": ""
},
@@ -47,22 +47,20 @@
"description": "Controls the title font size"
},
"xaxis_multiplier": {
"default": "100.0",
"default": 100.0,
"type": "float64",
"description": "The multiplication factor for the X-axis (horizontal)"
},
"yaxis_multiplier": {
"default": "100.0",
"default": 100.0,
"type": "float64",
"description": "The multiplication factor for the Y-axis (vertical)"
},
"axis-fontsize": {
"default": 10,
"type": "uint16",
"description": "Controls the axis font size (labels and values)"
},
"legend": {
"default": "",
"type": "string",
Loading