In short, you can rig up your animation trigger to a data trigger -- no code-behind needed. Other View technologies (not WPF or Silverlight) will require you to add a "data load complete" event to the ViewModel.
MVVM is simply MVP with WPF/Silverlight integration, to make signaling things like this easier. I believe WPF includes a data trigger, that may be used to trigger the animation. This allows you to forego adding a "data load complete" event to the ViewModel. You COULD add the event now, but you may be wasting your time, preparing the code for MVP compatibility that may never be needed.
The purpose of MVVM and MVP is to make the presentation view interchangeable. Consider how a WinForms, WinCE, text-only terminal (or even text to speech) View should inform the user the data are loaded. Each technology will behave differently. Therefore, the act of altering the user interface should reside in the View's code-behind, when not using WPF or Silverlight.