Hiding polygon boundaries in a Map series
Posted: Fri Jan 29, 2010 11:37 pm
Hello,
I'm working on a chart that contains both Map and Line series. I'm trying to turn off any boundaries between the polygons in the map, and have had some success by setting The resulting plot looks good, but I don't like the jagged look of the border Line:
.
When I change the SmoothingMode to HighQuality or AntiAlias the orange outline looks better but the boundaries of the polygons appear, and I don't want those to show up: Is it possible to set the smoothing modes of the series individually, or otherwise to get the smoothed outline without the polygon borders?
Thank you very much!
Bob
I'm working on a chart that contains both Map and Line series. I'm trying to turn off any boundaries between the polygons in the map, and have had some success by setting
Code: Select all
map1.Pen.Visible = false;
tChart1.Aspect.SmoothingMode = SmoothingMode.HighSpeed;
When I change the SmoothingMode to HighQuality or AntiAlias the orange outline looks better but the boundaries of the polygons appear, and I don't want those to show up: Is it possible to set the smoothing modes of the series individually, or otherwise to get the smoothed outline without the polygon borders?
Thank you very much!
Bob