Roman
Roman

Reputation: 66156

JSF component for Gantt chart

I need a JSF component for representing Gantt chart. Does any component library (like RichFaces) contain such a component?

Upvotes: 2

Views: 7182

Answers (3)

Jasper de Vries
Jasper de Vries

Reputation: 20178

Recent versions of PrimeFaces include a timeline component.

Events in the custom example have end dates, which makes the events to be rendered as bars.

Though it is not full blown Gantt, it could be enough for certain projects.

Upvotes: 1

BalusC
BalusC

Reputation: 1108672

JFreeChart has a Gantt chart and PrimeFaces has an image component which allows you to dynamically stream content in. Here is an example in combination with JFreeChart.

Alternatively you can also just grab h:graphicImage and let it point to a simple servlet which streams the JFreeChart result to the response based on the request parameters or pathinfo.

Upvotes: 5

Padmarag
Padmarag

Reputation: 7214

JFreeChart does it.

See here for example.

Upvotes: 1

Related Questions