I have 3 charts (ASP.Net Charting Control) on the same page. All three are using 3 series:
<asp:Series Name="Individual" ChartType="StackedColumn" YValueType="Int32" ToolTip="Individual: #VALY" XValueMember="Description" YValueMembers="Individual" BorderColor="180, 26, 59, 105" Color="220, 252, 180, 65"></asp:Series>
<asp:Series Name="Private Equity" ChartType="StackedColumn" YValueType="Int32" ToolTip="Private Equity: #VALY" XValueMember="Description" YValueMembers="PrivateEquity" BorderColor="180, 26, 59, 105" Color="220, 224, 64, 10"></asp:Series>
<asp:Series Name="Corporate" ChartType="StackedColumn" YValueType="Int32" ToolTip="Corporate: #VALY" XValueMember="Description" YValueMembers="Corporate" BorderColor="180, 26, 59, 105" Color="220, 65, 140, 240"></asp:Series>
In 2 of the 3 legends for the charts they display as expected (Individual, Private Equity, Corporate). On the third one, they display as Corporate, Private Equity, and then Individual.
Any ideas as to how to get the Legend to display in the right order?