Animation while changing node visibility

Hi,
Is there a way to create animation for changing node visibility?
To be more specific, when changing node visibility from false to true I want the node to fade in (gradually change opacity from 0 to 100) and create fade out when changing visibility from true to false.
Also, I want to shrink and expand nodes when changing visibility (gradually increase size from 0 to node size or the other way around)

So you are just looking to implement something like what is provided automatically when collapsing/expanding subtrees or subgraphs, yes? Such as demonstrated in HTML DOM Tree.

I’m not sure that this functionality is accessible as methods on AnimationManager. However if you change the visibility of a node within a layout, I think you might get the functionality automatically.

Thanks, I’ve been implemented my self a fadeOut/fadeIn functions for nodes.
This will be nice to have in future versions of gojs.