Remove sliders on graph for selects

This commit is contained in:
Sam Nolan 2022-04-01 16:16:24 +11:00
parent 4c1daab09f
commit 59801f1f81

View File

@ -18,9 +18,9 @@
"description": "The transform of the x scale", "description": "The transform of the x scale",
"value": 1.0, "value": 1.0,
"bind": { "bind": {
"input": "range", "input": "select",
"min": 0.1, "options": [0.1, 1],
"max": 1 "labels": ["log", "linear"]
} }
}, },
{ {
@ -28,9 +28,9 @@
"description": "The transform of the y scale", "description": "The transform of the y scale",
"value": 1.0, "value": 1.0,
"bind": { "bind": {
"input": "range", "input": "select",
"min": 0.1, "options": [0.1, 1],
"max": 1 "labels": ["log", "linear"]
} }
} }
], ],