Skip to content
Snippets Groups Projects
Commit 01f10004 authored by Flavio TARSETTI's avatar Flavio TARSETTI
Browse files

[plotters] fix default string values with floats for float types. Fixes #15

parent 8b813b4d
No related branches found
No related tags found
1 merge request!22Fix default string values with floats for float types
......@@ -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",
......
......@@ -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",
......
......@@ -22,12 +22,12 @@
"description": "The title for this plot"
},
"xaxis_multiplier": {
"default": "1.0",
"default": 1.0,
"type": "float64",
"description": "The multiplication factor for the X-axis (horizontal)"
},
"yaxis_multiplier": {
"default": "1.0",
"default": 1.0,
"type": "float64",
"description": "The multiplication factor for the Y-axis (vertical)"
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment