I am trying to show a running train kind of application where I have
the train data is as,
1. Train1,StationNo,TrainArrivalTime,TrainDepartureTime,TrainColor.
Similarly,
2. Train2,StationNo,TrainArrivalTime,TrainDepartureTime,TrainColor... etc.
All this big data is there in a List which I have sorted according to TrainNo(as every train no. has specific path)
Now, here as the train will be moving in different directions I am trying to show a runtime animation of all trains(or dots) simultaneously (through storyboard animation ...etc) - which shows a train going from Point A(pointsTop,Left known) to Point B, ALSO a train going from Point A to Point C. I tried doing it for one cluster of sorted TrainNo BUT unable to find a way which can give me a parallel effect for all train clusters. Also @ halt time some delay of animation is needed.
Any suggestion will be of great help. Thank You.