Here's an example: ```python px.bar( pd.DataFrame({ 'break_point': [-7, -6., -5, -4, -3], 'Rain_count': [0, 0, 6, 696, 31335], }).astype({'Rain_count': 'uint32'}), x='break_point', y='Rain_count' ) ```  If I change `uint32` to `int32`, then it displays fine:  versions: - pandas: '2.0.3' - plotly '5.15.0' - jupyter: 3.6.3