using System.Drawing;
namespace Core.Common.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; }
}
}