import java.awt.*
import java.net.*
import javax.imageio.*
import de.toolforge.googlechartwrapper.*
import de.toolforge.googlechartwrapper.data.*
import de.toolforge.googlechartwrapper.label.*
import de.toolforge.googlechartwrapper.util.*
import de.toolforge.googlechartwrapper.style.*
import de.toolforge.googlechartwrapper.coder.*
import de.toolforge.googlechartwrapper.color.*
// 棒グラフ
bc = new BarChart(
new Dimension(250, 250),
BarChart.BarChartOrientation.Horizontal,
BarChart.BarChartStyle.Grouped)
bc.setEncoder(EncoderFactory.getEncoder(
EncodingType.TextEncoding))
// グラフに基準線を設定する
bc.setBarChartZeroLine(new BarChartZeroLine(0.5f))
// 値は0から100
data = new BarChartDataSerie.BarChartDataSerieBuilder(
[85, 75, 40, 15, 70]).build()
bc.addBarChartDataSerie(data)
// X軸
xa = new AxisLabelContainer(AxisType.XAxis)
xa.setAxisRange(new AxisRange(0, 5, 1))
bc.addAxisLabelContainer(xa)
// Y軸
ya = new AxisLabelContainer(AxisType.YAxis)
ya.setAxisRange(new AxisRange(-50, 50))
bc.addAxisLabelContainer(ya)
bc.setBarWidthAndSpacing(
BarWidthAndSpacing.newAutomaticallyResize())
// URLを取得
println bc.getUrl()
// 画像として保存
bi = MiscUtils.getBufferedImage(bc)
ImageIO.write(bi, "png", new File ("barchart16.png"))
実行画面
※以下のjarを$GROOVY_HOME/libにコピー
googlechartwrapper_1.1.jar
動作環境
groovy 1.7.5, JDK6 Update22, googlechartwrapper 1.1
関連情報
googlechartwrapperのwebサイト
http://code.google.com/p/googlechartwrapper/
0 件のコメント:
コメントを投稿