ThinkGeo.com    |     Documentation    |     Premium Support

Add Multiple Drawing Style to LegendItem

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



Hi Shaahin, 
  
 Here is a sample about how to use multiply FontDrawingStyle. 
  
 DrawingFontStyles draingFontStyles = DrawingFontStyles.Bold | DrawingFontStyles.Italic | DrawingFontStyles.Underline; 
  
 Regards, 
  
 Don

Thanks for you response .

My problem resolved.

Shaahin, 
  
 Don’t hesitate to let us know if there are any other questions. 
 Regards, 
  
 Johnny