使用CSS更改p:图表轴标签

时间:2015-08-13 18:49:18

标签: css primefaces liferay jqplot

如何更改Liferay的Primefaces portlet中图表的标签?

使用Primefaces 5.1和Liferay / Tomcat7捆绑包。

搜索了Google和StackOverflow并且无法找到解决方案。

当我检查元素时,无法在代码中找到要修改的位置以更改颜色。当使用Chrome中的开发人员工具修改与轴相关的任何内容时,浏览器中没有任何内容。

这是我的view.xhtml

runParser

main.css的相关部分

    <h:head>
            <f:facet name="last">
                <link type="text/css" rel="stylesheet" href="#{request.contextPath}/css/main.css" />
            </f:facet>  
        </h:head>
        <h:body>
            <p:chart type="bar" model="#{cssBar.barModel}" style="height:300px;" widgetVar="charta"/>
            <p:commandButton type="button" value="Reset" icon="ui-icon-cancel" onclick="PF('charta').resetZoom()"/>     
        </h:body>

我尝试过组合:

.jqplot-xaxis-tick {
    color:red;
}

我只想使用CSS来修改,请不要使用JS。

0 个答案:

没有答案