Hello ,
How do I add multiple FontDrawingStyle such as Bold and Italic and Underline at same time to LegendItem?
LegendAdornmentLayer.LegendItems.Add(
new
LegendItem()
{
ImageStyle =
new
AreaStyle(
new
GeoSolidBrush(GeoColor.FromArgb(170, GeoColor.StandardColors.Green))),
TextStyle =
new
TextStyle(legendText,
new
GeoFont(
"Arial"
, 8,DrawingFontStyles.Bold),
new
GeoSolidBrush(GeoColor.SimpleColors.Black))
});
Regards