Completed
Last Updated: 02 Feb 2015 13:54 by ADMIN
ADMIN
Dimitar
Created on: 27 Jan 2015 06:55
Category: ChartView
Type: Bug Report
1
FIX. RadChartView - the vertical axis labels are not drawn when the orientation of the chart is set to horizontal.
To reproduce:
- Start the Q3 2014 SP1 demo application.
- Open the Bar example.
- Set the orientation to horizontal.

In addition please note that the first and the last labels of the horizontal axis are missing as well.

Workaround:

CategoricalAxis vertiacalAxis = radChartView1.Axes[1] as CategoricalAxis;

if (vertiacalAxis != null)
{
    vertiacalAxis.LabelFitMode = AxisLabelFitMode.Rotate;
    vertiacalAxis.LabelRotationAngle = .1;
}
0 comments