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?

link|improve this question
If you have not set custom legend objects, legends are supposed to display in the order the series were added to the series collection. Verify the series order for the plot you believe is not displaying in the proper order? Also, please comment as to whether the chart that is 'out of order' has a single column of legend items or a single row - or if it has multiple columns or rows. Use tinypic and provide a link with an example of this chart if possible. (I realize your site rep score is low which prevents you from uploading the image directly) – JHubbard80 Aug 24 '11 at 17:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.