Package | Description |
---|---|
org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel . |
org.jfree.chart.renderer.category |
Plug-in renderers for the
CategoryPlot class. |
org.jfree.data.category |
A package containing the
CategoryDataset interface and related classes. |
org.jfree.data.gantt |
Data interfaces and classes for Gantt charts.
|
Modifier and Type | Method and Description |
---|---|
static JFreeChart |
ChartFactory.createGanttChart(java.lang.String title,
java.lang.String categoryAxisLabel,
java.lang.String dateAxisLabel,
IntervalCategoryDataset dataset)
Creates a Gantt chart using the supplied attributes plus default values
where required.
|
static JFreeChart |
ChartFactory.createGanttChart(java.lang.String title,
java.lang.String categoryAxisLabel,
java.lang.String dateAxisLabel,
IntervalCategoryDataset dataset,
boolean legend,
boolean tooltips,
boolean urls)
Creates a Gantt chart using the supplied attributes plus default values
where required.
|
Modifier and Type | Method and Description |
---|---|
protected void |
IntervalBarRenderer.drawInterval(java.awt.Graphics2D g2,
CategoryItemRendererState state,
java.awt.geom.Rectangle2D dataArea,
CategoryPlot plot,
CategoryAxis domainAxis,
ValueAxis rangeAxis,
IntervalCategoryDataset dataset,
int row,
int column)
Draws a single interval.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultIntervalCategoryDataset
A convenience class that provides a default implementation of the
IntervalCategoryDataset interface. |
Modifier and Type | Interface and Description |
---|---|
interface |
GanttCategoryDataset
An extension of the
IntervalCategoryDataset interface that adds
support for multiple sub-intervals. |
Modifier and Type | Class and Description |
---|---|
class |
SlidingGanttCategoryDataset
A
GanttCategoryDataset implementation that presents a subset of the
categories in an underlying dataset. |
class |
TaskSeriesCollection
A collection of
TaskSeries objects. |