Unplanned
Last Updated: 06 Feb 2017 09:45 by ADMIN
ADMIN
Dimitar
Created on: 29 Nov 2016 06:18
Category: ChartView
Type: Bug Report
1
FIX. RadChartView - the legend is not exported on a proper position when the alignment of the LegendElement is set.
To reproduce:
- Set the position like this:
this.radChartView1.ChartElement.LegendElement.Alignment = ContentAlignment.TopCenter;

- Export the chart to an image, the position is not the same as in the application.

Workaround:
- Set the position manually:

this.radChartView1.ChartElement.LegendPosition = LegendPosition.Float;
this.radChartView1.ChartElement.LegendOffset = new Point(400, 0);


0 comments