Declined
Last Updated: 10 Feb 2015 13:36 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 29 May 2014 07:05
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - Legend items do not wrap when their orientation is horizontal
To reproduce: use the following code snippet:

 Random rand = new Random();
 List<LineSeries> list = new List<LineSeries>();
 for (int i = 0; i < 15; i++)
 {
     LineSeries ls = new LineSeries();
     ls.LegendTitle = "Series" + i;
     list.Add(ls);
 }
 for (int i = 0; i < 1000; i++)
 {
     foreach (LineSeries s in list)
     {
         s.DataPoints.Add(new CategoricalDataPoint(i, rand.Next(0, rand.Next(5, 20))));
     }
 }
 radChartView1.Series.AddRange(list.ToArray());

 this.radChartView1.ChartElement.LegendPosition = LegendPosition.Bottom;
 this.radChartView1.ChartElement.LegendElement.StackElement.Orientation = Orientation.Horizontal;

Resolution: 
The issue is duplicated with item IMPROVE. RadChartView - ChartLegend should be able to wrap its items. From Q1 2015 when there are many items in the chart legend a scroll bar will appear so users can scroll through the items.
More info in the following feedback item http://feedback.telerik.com/Project/154/Feedback/Details/149848-add-radchartview-when-the-legend-has-many-items-a-scrollbar-should-appear

2 comments
ADMIN
Ralitsa
Posted on: 06 Feb 2015 17:52
The issue is duplicated with item IMPROVE. RadChartView - ChartLegend should be able to wrap its items. You can track its progress, subscribe for status changes and add your vote/comment to it on the following link:
http://feedback.telerik.com/Project/154/Feedback/Details/109661-improve-radchartview-chartlegend-should-be-able-to-wrap-its-items
ADMIN
Ivan Petrov
Posted on: 03 Feb 2015 09:40
From Q1 2015 when there are many items in the chart legend a scroll bar will appear so users can scroll through the items.
More info in the following feedback item http://feedback.telerik.com/Project/154/Feedback/Details/149848-add-radchartview-when-the-legend-has-many-items-a-scrollbar-should-appear