Hi everybody,
I'm trying to create a realtime scatter plot - like an over-the-top minimap. I am able to refresh and plot x and y data using a stream in initstate, but I'm facing a problem:
everytime the stream provides new data, the markers are being re-rendered, triggering their complete animation (which is growing from size 0 to size defined and moving to new point). If I make animationDuration small, the markers keep blinking and if I make animationDuration zero, markers simply teleport to new point.
I would like to have only the second marker animation active (the moving one) and not the first (growing).
Is there a way to choose or further configure marker animations?
Is there any other way of providing data to the scatter plot so it doesn't trigger the growing animation?