msimoni18
msimoni18
@artt In the working example you've provided, if you zoom in and then check heatmap, the zoom is not saved. Do you know how to keep the same zoom whenever...
You need to make sure ```chartData``` is a state variable and you are updating it with ```setChartData```. The answer on this stackoverflow post should be what you are looking for:...
I've been using this template successfully for a while now. For some unknown reason I'm also getting these messages when trying to start my app, except I'm using ``Node.js v18.16.1``.
Your syntax is incorrect. You are missing ``}}`` at the end of the line.
Ah sorry I missed that. Looks like you need a comma at the end of line 52.
You have to use ``useState`` when updating the ``layout``. Adding the code below should no longer automatically adjust the x-axis. ``` ... const [layout, setLayout] = React.useState({ xaxis: { title:...
You can also do it this way if you only want to manage one state. ``` function App() { const [layout, setLayout] = React.useState({ xaxis: { title: "x axis" }...
@bernardodalfovo In my experience, running into `ModuleNotFoundError` is an indication that you need to add that module as a `hidden import` either through the command line or through the spec...
I'm using Electron 13.0.1 and am having the same issue on Windows 10. ```openDevTools()``` and ```openDevTools({ mode: 'detach' })``` do not work. I've also tried clicking on "Toggle Developer Tools"...