Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.8k views
in Technique[技术] by (71.8m points)

css - Primefaces 5 Rotated Axis Tick Labels

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...