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
Describe the bug
I need to add ~10k of data rows to a table. After a few hundred lines I receive a Javafx warning/error and the table on the GUI shows only the last added line.
Feb 16, 2024 10:20:18 AM javafx.scene.control.skin.VirtualFlow addTrailingCells
INFO: index exceeds maxCellCount. Check size calculations for class javafx.scene.control.TableRow
To Reproduce
Steps to reproduce the behavior: ResultTable results = new ResultList("DegC", "Inter", "RAW10Bit"); table.watch(results); results.addData(temp_degc, temp_inter, (temp_raw * 1.0));
The last line creates an error after ~1k lines.
Expected behavior
The table shall either continue to show all the rows or add a feature to limit the output of the table similar to the "series.setLimit()"
Screenshots
The text was updated successfully, but these errors were encountered:
I'll see if I can reproduce this, although I suspect this might be an underlying JavaFX graphics bug, in which case I may just need to update the bundled JavaFX libraries (or find a better way of dealing with it as a dependency, ofc).
Does this happen if JavaFX is running in software-rendering mode (or if it is already, then in hardware-accelerated mode)?
Describe the bug
I need to add ~10k of data rows to a table. After a few hundred lines I receive a Javafx warning/error and the table on the GUI shows only the last added line.
Feb 16, 2024 10:20:18 AM javafx.scene.control.skin.VirtualFlow addTrailingCells
INFO: index exceeds maxCellCount. Check size calculations for class javafx.scene.control.TableRow
To Reproduce
Steps to reproduce the behavior:
ResultTable results = new ResultList("DegC", "Inter", "RAW10Bit");
table.watch(results);
results.addData(temp_degc, temp_inter, (temp_raw * 1.0));
The last line creates an error after ~1k lines.
Expected behavior
The table shall either continue to show all the rows or add a feature to limit the output of the table similar to the "series.setLimit()"
Screenshots
The text was updated successfully, but these errors were encountered: