Hi bigtiger,
You may use one of the following methods:
(a) Please add the line layer first, followed by the bar layer. In this way, the line layer will be in front of the bar layer.
(b) If you must add the bar layer first, followed by the line layer, you may use Layer.moveFront to move the line layer to the front. For example, in C#/Java:
// move line layer in front of the bar layer
myLineLayer.moveFront(myBarLayer);
Hope this can help.
Regards
Peter Kwan |