how to resolve overlapped region
-
Hello! On the graph display we have many overlapped text. Is there any good algorithms to resolve this problem, so that we have a readable layout ? Thanks :)
-
Hello! On the graph display we have many overlapped text. Is there any good algorithms to resolve this problem, so that we have a readable layout ? Thanks :)
Please don't post to every forum. You can request the metrics of the test in C# and also C++, and use that to work out if items overlap. You're basically talking about overlapping rectangles, no fancy algorithms are needed. Christian Graus - Microsoft MVP - C++
-
Please don't post to every forum. You can request the metrics of the test in C# and also C++, and use that to work out if items overlap. You're basically talking about overlapping rectangles, no fancy algorithms are needed. Christian Graus - Microsoft MVP - C++
My appology for posting to two forums. The problems is: overlapped label inside a densed polygon on map. Each polygon has a label (ex. town name). The label should be placed to ensure readability while still reside in that polygon. Your comments woulds be very helpful.
-
My appology for posting to two forums. The problems is: overlapped label inside a densed polygon on map. Each polygon has a label (ex. town name). The label should be placed to ensure readability while still reside in that polygon. Your comments woulds be very helpful.
OK - that's a bit harder :-) In that case, I guess you could start by centering the text over the point that denotes the location, then check if any overlap, and if they do, then decide on a solution. Your only options will be to change the font size, move the text about, or put some text below the dot and some above, as far as I can see. Christian Graus - Microsoft MVP - C++