TTree->Draw(): 2D image with color map for third coordinate

Hello,

I have a tree object eventTree, which contains four different branches: xCoord, yCoord, zCoord, time.
Is there a way to plot 3 of these branches in a 2D image where the third coordinate values are given by a color map?
To better explain myself, in a case like:

eventTree -> Draw(zCoord, yCoord, xCoord, time);

what we get is a 3D plot where time is expressed by a color map.

Is there a way to do the same in 2D?
Something like:

eventTree -> Draw (yCoord, xCoord, time);

with time still assigned to a color map instead to an axis.

Thank you.

eventTree->Draw("yCoord:xCoord:time", "", "col");

Thank you very much.