Class XYValueSeriesTransition
java.lang.Object
com.codename1.charts.transitions.SeriesTransition
com.codename1.charts.transitions.XYValueSeriesTransition
- All Implemented Interfaces:
Animation
A transition for enabling animations between different values in an XYSeries.
-
Field Summary
Fields inherited from class SeriesTransition
EASING_IN, EASING_IN_OUT, EASING_LINEAR, EASING_OUTModifier and TypeFieldDescriptionstatic final intstatic final intstatic final intstatic final int -
Constructor Summary
ConstructorsConstructorDescriptionXYValueSeriesTransition(ChartComponent chart, XYValueSeries series) Creates a new transition on the given chart and associated series. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidcleanup()Cleans up after the transition is complete.Gets the "buffer" series where values can be set.Gets the series whose values are to be animated by this transition.voidInitializes the transition.protected voidupdate(int progress) Updates the series and renderer at the given progress position (0 to 100).Methods inherited from class SeriesTransition
animate, animateChart, getChart, getDuration, getEasing, paint, setChart, setDuration, setEasing, updateChartModifier and TypeMethodDescriptionbooleananimate()Allows the animation to reduce "repaint" calls when it returns false.voidApplies all pending changes to the chart model and renderer using the current animation settings.getChart()Gets the ChartComponent that is the subject of the transition.intGets the duration of the transition.intGets the type of easing used in the transition.voidDraws the animation, within a component the standard paint method would be invoked since it bares the exact same signature.voidsetChart(ChartComponent chart) Sets the ChartComponent that is the subject of the transition.voidsetDuration(int duration) Sets the duration of the transition in milliseconds.voidsetEasing(int easing) Sets the type of easing used in the transition.voidApplies all pending changes to the chart model and renderer and repaints the chart.Methods inherited from class Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()booleanIndicates whether some other object is "equal to" this one.final ClassgetClass()Returns the runtime class of an object.inthashCode()Returns a hash code value for the object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes current thread to wait until another thread invokes the method or the method for this object.final voidwait(long timeout) Causes current thread to wait until either another thread invokes the method or the method for this object, or a specified amount of time has elapsed.final voidwait(long timeout, int nanos) Causes current thread to wait until another thread invokes the method or the method for this object, or some other thread interrupts the current thread, or a certain amount of real time has elapsed.
-
Constructor Details
-
XYValueSeriesTransition
Creates a new transition on the given chart and associated series. The series should be one of the series rendered by the given chart.
Parameters
-
chart: The ChartComponent that is being used to render the series. -
series: The series whose data you wish to animate.
-
-
-
Method Details
-
initTransition
public void initTransition()Initializes the transition. This can be overridden by subclasses to provide their own functionality to be executed just before the transition occurs.- Overrides:
initTransitionin classSeriesTransition
-
cleanup
protected void cleanup()Cleans up after the transition is complete.- Overrides:
cleanupin classSeriesTransition
-
update
protected void update(int progress) Updates the series and renderer at the given progress position (0 to 100).
Parameters
progress: The progress position in the motion. (0-100).
- Specified by:
updatein classSeriesTransition
-
getBuffer
Gets the "buffer" series where values can be set. Any values set on the buffer will be applied to the target series during the course of the transition. -
getSeries
Gets the series whose values are to be animated by this transition.
-