Emmanuel Joliet I am waiting for your input.
There are 3 options to make sure we support any desired behavior:
// maximum table rows for scatter chart support, undefined means unlimited
maxRowsForScatter: undefined,
// maximum table rows for which the default chart is scatter, heatmap is created for larger tables
maxRowsForDefaultScatter: 5000,
// minimum number of points to use WebGL 'scattergl' instead of SVG 'scatter'
minScatterGLRows: 1000,
If IRSA does now want to go with scattergl just yet, we can set all values to be the same - this way the behavior will not change.
One limitation of WebGL, that the number of WebGL contexts is limited (usually 16 per browser), when the new context is created and the limit is exceeded, the oldest context is dropped.
Plotly is using 2 contexts per div, when one of the traces is 'gl'.
Pull Request: https://github.com/Caltech-IPAC/firefly/pull/627
Tatiana Goldina Do you have a link to something like a Plotly Github issue on the disappearing error bars?