JavaFX Duplicate Series Added

后端 未结 4 1364
后悔当初
后悔当初 2020-12-07 03:11

I am currently learning JavaFX and am trying to create an app that shows a line chart and allows the user to change certain variables which then changes the plotted line. T

4条回答
  •  [愿得一人]
    2020-12-07 03:55

    This seems to be a bug when changing the chart data with animation. As mentioned by @Anurag if you turn off the animation you will not face the issue.

    e.g.

    linePlot.setAnimated(false);
    

提交回复
热议问题