You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I stumbled upon this problem today. As you can see here, when the y-value is given as string and the error value as float, the error value is presumably parsed as string and then added using the "+" operator, which results in string concatenation and therefore a wrong value.
For example, if your y-value is 2 and the error value is 2 then the error bar should be drawn up to 4. When y is a string though, the error bar is drawn up to 22.
When using 'scatter' instead of 'scattergl', this bug does not occur.
The text was updated successfully, but these errors were encountered:
I stumbled upon this problem today. As you can see here, when the y-value is given as string and the error value as float, the error value is presumably parsed as string and then added using the "+" operator, which results in string concatenation and therefore a wrong value.
For example, if your y-value is 2 and the error value is 2 then the error bar should be drawn up to 4. When y is a string though, the error bar is drawn up to 22.
When using 'scatter' instead of 'scattergl', this bug does not occur.
The text was updated successfully, but these errors were encountered: