Plotly dash, why my y scale is not alligned correctly


hi there, why my y axis scale is not alligned correctly
so far i used this code for plotting
return html.Div([
html.P(‘Analog Input2 with Respect to Timestamp’),

    dcc.Graph(
       figure=px.line(dh3, x="Time_stamp", y="Analog Input 2 "),
),

  ])
1 Like

Your input data is likely of type string rather than numbers.

yes resolved issue thank you