Home Forums Report Bugs Crowded display Reply To: Crowded display

#18637

Hi @Sanjoy

I found the issue.

When I provide data like :
[
{
“x”: 1,
“y”: 1.0
},
{
“x”: 2,
“y”: 2.0
}
]

The auto scale would work perfectly, but when I use “x” value as string like:
[
{
“x”: “1”,
“y”: 1.0
},
{
“x”: “2”,
“y”: 2.0
}
]

It will still plot the point without issue, but the scale would have be wrong and crowd, I hope you find this bug well with my description.