It is not changing the bar width of a bar chart when x-axis show time.

follows the code used to generate the graph
filters
| essql
query="SELECT HISTOGRAM("@timestamp", INTERVAL 10 MINUTES) as timestamp, count(*) as counts FROM "state" group by timestamp ORDER BY timestamp desc"
| pointseries x="timestamp" y="counts" color="timestamp"
| plot defaultStyle={seriesStyle bars=1 horizontalBars=false } yaxis={axisConfig show=true min=0 } xaxis={axisConfig min=1692707999900 max=1692709999900}
| render
How can I change the graph to be like below
Thanks
