Remove a value from YIntervalSeries

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
ssaraceni
Posts: 14
Joined: Wed Apr 02, 2008 4:37 pm

Remove a value from YIntervalSeries

Post by ssaraceni » Fri Apr 18, 2008 9:14 am

Hi, i need to remove the last value from an YIntervalSeries, i don't want to remove all the values of the series, is possible to remove only the last one?
thanks
Simone

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Fri Apr 18, 2008 3:54 pm

YIntervalSeries inherits the following method from ComparableObjectSeries:

Code: Select all

public ComparableObjectItem remove(Comparable x);
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

Locked