Charts - Bar

BarChart displays a CartesianChartModel.

Source

<p:barChart id="basic" value="#{chartBean.categoryModel}" legendPosition="ne"
            title="Basic Bar Chart" min="0" max="200" style="height:300px"/>

<p:barChart id="horizontal" value="#{chartBean.categoryModel}" legendPosition="se" style="height:300px"
            title="Horizontal Bar Chart" orientation="horizontal" min="0" max="200"/>

<p:barChart id="stacked" value="#{chartBean.categoryModel}" legendPosition="ne" style="height:300px"
            title="Stacked Bar Chart" stacked="true" barMargin="50" min="0" max="300"/>