Chart Legend
Winnovative control offers the possibility to display a legend of the data series. You can change the position (left, right, top or bottom), font, color, margins, border and other properties.
Source code
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
WebChart1.DataSource = Winnovative.DataSources.GetTestData2();
WebChart1.LegendBox.Visible = true;
WebChart1.LegendBox.Font = new System.Drawing.Font("Verdana", 8);
WebChart1.LegendBox.Color = Color.Blue;
WebChart1.LegendBox.BorderSize = 1;
WebChart1.LegendBox.Margins.Bottom = 300;
}
}