Is the range for a histogram's xaxis limited?

Hi,

The start and end range for my histogram is 17 to 200,592.

data = [
go.Histogram(
x=histData,
xbins=dict(start=16.5, size= 1, end= 200592.5)
)
]

The histogram that gets generated by plotly seems to stop plotting around 4,976. Is that the limit?

Thanks!