JavaFX Duplicate Series Added

后端 未结 4 1367
后悔当初
后悔当初 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:49

    This issue could also happen if you have :

    animated="true"
    

    set for your line chart.

    When the class XYChart checks for duplicates, it takes all the series from displayedSeries and compares them with your existing data series. During this time, if you have cleared the data, the series will still be in the displayedSeries due to the prolonged fading effect and result in the "duplicate series added" error.

    If that is the case, simply set :

    animated="false"
    

提交回复
热议问题