Plotly axis for Decimal values

I need the AutoRange values which is set to the x and y axis values. Instead of me setting the tickvals I need to slightly modify the auto-generated ones

For ex: I have y axis values as
0.009,
0.00905,
0.0091,
0.00915 etc.

here if you see the last 0s after decimals are ignored and its is confusing when we show the data in the graph.

I want with those values. So instead of me generating the intervals if i can modify them and send as tickvals n ticktext it will be easy to manipulate and I want end result as

0.00900,
0.00905,
0.00910,
0.00915

Here’s one way: https://codepen.io/etpinard/pen/BggpeW?editors=1010

Yeah I used this and now its perfect. Thanks