MS Charts Asp.Net Table For Legend
If you want a table like thing for a Legend you can take a look at the following. Putting this in the Load event works. However...this code was never actually used. Why? Because it takes up too much chart real estate, and when the pages to a small width the chart resizes too small and becomes unreadable. Too bad. :(. ////Create a new legend called "Legend3". Chart1.Legends.Add(new Legend("Legend3")); ////Set Docking of the Legend chart to the Default Chart Area. Chart1.Legends["Legend3"].Docking = Docking.Left; Chart1.Legends["Legend3"].Alignment = StringAlignment.Center; ////Assign the legend to Series1. Chart1.Series["Series1"].Legend = "Legend3"; Chart1.Series["Series1"].IsVisibleInLegend = true; LegendCellColumn lccSym = new LegendCellColumn("Sym", LegendCellColumnType.SeriesSymbol, ""); lccSy