jfreechart.
JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D APIs, it currently supports bar charts, pie charts, line charts, XY-plots and time series plots..
Here is the list of declaration for jfreechart. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.12</version> </dependency>
If you think this Maven repository POM file listing for jfreechart is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public Licence
URL: http://www.gnu.org/licenses/lgpl.txt.
The jfreechart-1.0.12 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Chart | jcommon 1.0.15 JCommon is a free general purpose Java class library that is used in several projects at www.jfree.org, including JFreeChart and JFreeReport. | 20 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on jfreechart-1.0.12. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | htmlunit 2.13 A headless browser intended for use in testing web-based applications. | 10 |
JUnit | htmlunit 2.8 A headless browser intended for use in testing web-based applications. | 20 |
Report | jasperreports 5.5.1 JasperReports Library | 15 |
Library | vraptor 3.4.0 Java web MVC framework for fast and maintainable development | 11 |
Report | jasperreports 3.7.6 JasperReports Library | 10 |
JUnit | htmlunit 2.7 A headless browser intended for use in testing web-based applications. | 6 |
JUnit | htmlunit 2.11 A headless browser intended for use in testing web-based applications. | 9 |
JUnit | htmlunit 2.12 A headless browser intended for use in testing web-based applications. | 14 |
JUnit | htmlunit 2.9 A headless browser intended for use in testing web-based applications. | 37 |
Library | vraptor 3.4.1 Java web MVC framework for fast and maintainable development | 12 |
itext 4.2.0 This is a build of the last MPL version of iText. | 6 |
The following plugins are used in the jfreechart-1.0.12.jar
The following packages are defined in the jfreechart-1.0.12.jar
org.jfree.chart org.jfree.chart.annotations org.jfree.chart.axis org.jfree.chart.block org.jfree.chart.demo org.jfree.chart.editor org.jfree.chart.encoders org.jfree.chart.entity org.jfree.chart.event org.jfree.chart.imagemap org.jfree.chart.labels org.jfree.chart.needle org.jfree.chart.plot org.jfree.chart.plot.dial org.jfree.chart.renderer org.jfree.chart.renderer.category org.jfree.chart.renderer.xy org.jfree.chart.resources org.jfree.chart.servlet org.jfree.chart.title org.jfree.chart.urls org.jfree.chart.util org.jfree.data org.jfree.data.category org.jfree.data.contour org.jfree.data.function org.jfree.data.gantt org.jfree.data.general org.jfree.data.io org.jfree.data.jdbc org.jfree.data.resources org.jfree.data.statistics org.jfree.data.time org.jfree.data.time.ohlc org.jfree.data.xml org.jfree.data.xy
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <name>jfreechart</name> <version>1.0.12</version> <url>http://www.jfree.org/jfreechart/</url> <organization> <name>JFree.org</name> <url>http://www.jfree.org/</url> </organization> <inceptionYear>2001</inceptionYear> <description> JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D APIs, it currently supports bar charts, pie charts, line charts, XY-plots and time series plots. </description> <scm> <connection>scm:cvs:pserver:anonymous@jfreechart.cvs.sourceforge.net:/cvsroot/jfreechart:jfreechart</connection> <url>http://jfreechart.cvs.sourceforge.net/jfreechart/jfreechart/</url> </scm> <licenses> <license> <name>GNU Lesser General Public Licence</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.3</source> <target>1.3</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/JFreeChartTestSuite.java</include> </includes> <!-- Force locale because of some tests in WeekTests.java --> <argLine>-Duser.language=en -Duser.region=GB</argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>jfree</groupId> <artifactId>jcommon</artifactId> <version>1.0.15</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> </project>