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",
"value": 1.0,
"bind": {
"input": "range",
"min": 0.1,
"max": 1
"input": "select",
"options": [0.1, 1],
"labels": ["log", "linear"]
}
},
{
@ -28,9 +28,9 @@
"description": "The transform of the y scale",
"value": 1.0,
"bind": {
"input": "range",
"min": 0.1,
"max": 1
"input": "select",
"options": [0.1, 1],
"labels": ["log", "linear"]
}
}
],