I am using LineChart
in the javafx8 and I am able to get the series plotted dynamically in the graph and the symbols plotted for every input. But the problem is I just want to show the symbol for the present node and not for the nodes which are already added.
I tried:
linechart.setCreateSymbols(false);
But that does not fulfill my needs.It stopped creating symbols for inputs.
Can anyone tell How to show only the present symbol not the added oness????
Just keep track of the node for the last data point added. When a new point is added, set the visibility of the previous "last point" to false.
You can do this directly with
If you want to be able to factor the code out more readily, you might use an
ObjectProperty
and register a listener: