Search found 3 matches

by darksnake
Sun May 15, 2016 1:32 pm
Forum: JFreeChart
Topic: ChartViewer crashes JavaFX in case of multiple threads
Replies: 7
Views: 14604

Re: ChartViewer crashes JavaFX in case of multiple threads

While preparing the example, I found the source of the problem. There was a hidden call to the API from non-UI thread in my framework. When I fixed it, everything started to work as expected. Normally, JavaFX throws an exception if calls are made from non-UI thread. Is it possible to add this check ...
by darksnake
Sun May 15, 2016 11:51 am
Forum: JFreeChart
Topic: ChartViewer crashes JavaFX in case of multiple threads
Replies: 7
Views: 14604

Re: ChartViewer crashes JavaFX in case of multiple threads

I am running latest Oracle JDK (8u92) under windows 10. My aim is to work with pretty large charts (currently 100 line plots with 4000 data points in each), but it should not reach memory cap. It usually loads, but when I try to, for example, turn all lines invisible, it crashes somewhere in the mid...
by darksnake
Sat May 14, 2016 3:46 pm
Forum: JFreeChart
Topic: ChartViewer crashes JavaFX in case of multiple threads
Replies: 7
Views: 14604

ChartViewer crashes JavaFX in case of multiple threads

I am using JFreeChart inside JavaFX application. Currently I am using SwingNode to embed chart inside JavaFX scene but there are some unpleasant lags during node re-size so I am trying to migrate to ChartViewer. It works fine for static plots, but it produces random crashes when I am trying to make ...