This may be off topic put took me a while to track down so I wanted to see if there was interest in adding a check.
I started getting reports that a line chart would show up blank. Initial investigation revealed that the data was indeed loaded correctly and the focus circle showed up on mouseover. Turned out that the endpoint I was consuming had started spewing out very big values like 2.82730418753478e+27. It seems that a svg path will not render if one of the coordinates is really large. Example:
Only the first path is drawn, no warning is given in the second case that anything is wrong. This seems to be implementation specific since the issue will trigger for different values in chrome and firefox.
This may be off topic put took me a while to track down so I wanted to see if there was interest in adding a check.
I started getting reports that a line chart would show up blank. Initial investigation revealed that the data was indeed loaded correctly and the focus circle showed up on mouseover. Turned out that the endpoint I was consuming had started spewing out very big values like
2.82730418753478e+27
. It seems that a svg path will not render if one of the coordinates is really large. Example:Only the first path is drawn, no warning is given in the second case that anything is wrong. This seems to be implementation specific since the issue will trigger for different values in chrome and firefox.
Is there any interest in having a check for this?