As you already discovered you have to draw transparent objects from back to front.
When drawing a transparent object, the object is drawn, and blended with the pixels that are behind it.
So this happens when you draw from back to front:
You draw the red image, it is blended with the white background. You can tell by the "pink" instead of pure red colour that it is blended with the white background. Then you draw the green image, it is blended with the already drawn white background and red image. Finally you draw the blue image, which is blended with the already drawn objects.
But now we draw from front to back:
We draw the red plane first. It is blended with the white background which you can see because it is pink instead of red. Now we draw the green plane. It is blended with the white background, you can tell by the colour, it is not pure, deep, green. But, the renderer sees that a part falls behind the red plane, so it doesn't draw that part. But, you think: the red plane is transparent, the renderer should draw behind that red plane! Well no, the renderer only keeps track of the depth / z-order of the pixels in the z-buffer / depth-buffer, it doesn't know if that pixel is transparent or not. The same story goes for the blue plane, only the part that is not obscured by other objects is drawn.
What is this depth buffer you speak of?
In the depth-buffer the depth of every pixel is stored. When you draw a pixel at 2,2 with a z of 1, the depth-buffer at 2,2 is updated with the value 1. Now when you draw a line from 1,2 to 3,2 with a z of 3, the renderer will only draw the pixels where the depth-buffer has a value of >= 3. So pixel 1,2 is drawn (and the depth-buffer at 1,2 set to 3). Pixel 2,2 is not drawn, because the depth-buffer indicates that that pixel is already drawn with a lesser depth (1 vs 3). Pixel 3,2 is drawn and the depth-buffer at 3,2 is set to 3.
So the depth-buffer is used to keep track of the z-order of every pixel to prevent overwriting that pixel with a pixel that is farther away.
If you want to draw transparent objects the right way, see this answer.
Excerpt from that answer:
- First draw opaque objects.
- Disable depth-buffer writes (so the depth-buffer is not updated), but keep depth-buffer checking enabled.
- Draw transparent objects. Because the depth-buffer is not updated you don't have the problem of transparent objects obscuring each other. Because depth-buffer checking is enabled, you don't draw behind opaque objects.
I don't know if FireMonkey supports disabling depth-buffer writes, you have to find out yourself.