I need to draw a series of graphs and show the legend. When the legend does not fit in the RadChartView, a scroll bar appears - this is acceptable, you can quickly see the whole legend. But the title of the legend is cut off.
Hello Valery,
To workaround, this set the Padding property of the TitleElement and ScrollViewElement:
this.radChartView1.ChartElement.LegendElement.TitleElement.Padding = new Padding(0, 5, 0, 0);
this.radChartView1.ChartElement.LegendElement.ScrollViewElement.Padding = new Padding(0, 5, 0, 10);
I hope this helps.
Regards,
Nadya
Progress Telerik