-
Notifications
You must be signed in to change notification settings - Fork 298
GoogleCharts
Michael O'Cleirigh edited this page Jan 22, 2011
·
5 revisions
The Google Charts Project allows creation of charts using the Google Chart API.
- googlecharts-parent
- googlecharts
- googlecharts-examples
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>googlecharts</artifactId>
<version>1.4.14</version>
</dependency>
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>googlecharts</artifactId>
<version>1.4-SNAPSHOT</version>
</dependency>
<repository>
<id>wicketstuff-core-snapshots</id>
<url>ttps://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
data = new AbstractChartData(ChartDataEncoding.TEXT, 100) {
public double[][] getData() {
return new double[][]{{100, 80, 60, 30, 30, 30, 10}};
}
};
provider = new ChartProvider(new Dimension(200, 100), ChartType.VENN, data);
add(new Chart("venn", provider));
<div wicket:id="venn"></div>
Daniel Spiewak
Path is: /jdk-1.5-parent/googlecharts-parent
Path is: /jdk-1.5-parent/googlecharts-parent