January 2013
Intermediate to advanced
328 pages
7h 14m
English
The lineChart component visualizes series of point data as lines in a graph.
A simple definition for a line chart with two series of data to display is as follows:
<p:lineChart value="#{chartController.model}" style="height:250px" />The chart will be rendered as follows:

The model that binds to the component should be an instance of org.primefaces.model.chart.CartesianChartModel. The definition of data with two sample series is shown next:
CartesianChartModel model = new CartesianChartModel(); ChartSeries sales = new ChartSeries(); sales.setLabel("Sales"); sales.set("2004", 1000); sales.set("2005", 1170); sales.set("2006", ...Read now
Unlock full access