更改Primefaces 5.2中的字体大小<p:chart jqplot-xaxis-tick =“”

时间:2018-12-07 15:20:08

标签: charts primefaces jqplot

=“”

如何在p:图表栏中更改字体大小jqplot-xaxis-tick?我使用Primefaces 5.2并覆盖样式类不起作用。

enter image description here

1 个答案:

答案 0 :(得分:1)

根据JQPlot,您可以更改字体大小和字体系列:http://www.jqplot.com/examples/rotated-tick-labels.php

因此,在PF中,您可以使用Chart Extender功能并执行此操作...

JAVA:

final LineChartModel model = new LineChartModel();
model.setExtender("chartExtender");

JAVASCRIPT:

function chartExtender() {
    this.cfg.axesDefaults = {
    tickOptions: {
      fontFamily: 'Georgia',
      fontSize: '10pt',
      angle: -30
    }
   };
}