I have several inputs in my html file:
<input type="number" id="yAxisMax" placeholder="Max Value" required /><br>```
And I want to use these inputs in the renderer.js file:
``` function updateChart(){
yAxis: {
min: document.getElementById('yAxisMin').innerText,
max: document.getElementById('yAxisMax').innerText,
},
}```
But when I run this code I do not get any value from the dom