Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

In Primefaces 4 we can configure the rotation of axis tick labels as below:

<p:barChart id="idBars" value="#{chartBean.modelChart}" 
                            [...]
                            style="xaxisAngle=-30"
                            >
</p:barChart>

Now, how can I configure the rotation of axis tick labels using Primefaces 5 or higher?

Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

You can make this in the model. (http://www.primefaces.org/docs/api/5.0/org/primefaces/model/chart/BarChartModel.html)

 Axis xAxis = barModel.getAxis(AxisType.X);
 xAxis.setTickAngle(-30);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...