using System.Drawing; namespace DelftTools.Controls.Swf.Charting { /// /// public interface IChartLegend { /// /// sets the visibility of the chart legend /// bool Visible { get; set; } LegendAlignment Alignment { get; set; } /// /// Sets the font properties of the chart legend /// Font Font { get; set; } } }