I want to rotate the data label to 90 degrees in column chart. I used the code written below but its not working.
<fx:Style>
@font-face{
src: url("/assets/MyriadWebPro.ttf");
fontFamily: myMyriad;
embedAsCFF: false;
}
@namespace mx "library://ns.adobe.com/flex/mx";
mx|ColumnSeries {
labelPosition:outside;
labelRotation:90;
}
mx|ColumnChart {
fontFamily: myMyriad;
}
</fx:Style>