Hi
I have added points to RadMap and on each point I have placed an image and a text (as shown in the attached screenshot image).
My questions
1) can I move the text below the point because it is currently on top of the added image ?
2) can I add a background color to the text to make sure it is visible to end users?
The code I am using is below:
PointG racheer = new PointG(Latitude, Longitude);MapPoint point = new MapPoint(racheer);
point.Image = Properties.Resources.myImage;
point.Size = new Size(15, 15);
point.Text = "TEXT";
point.ForeColor = Color.Red;
radMap1.MapElement.Layers["myLayer"].Add(point);