调用现成的画图控件
实现润乾报表提供了com.runqian.report4.model.expression.graph.ICustomGraph接口,用户自己定义类实现它的public BufferedImage draw(ExtGraphProperty data, StringBuffer htmlLink, int imageWidth, int imageHeight) 方法,即可实现调用现成的画图类控件来画图。
-
ICustomGraph接口
方法介绍:
draw
语 法: public java.awt.image.BufferedImage draw(ExtGraphProperty data, java.lang.StringBuffer htmlLink, int imageWidth, int imageHeight)
参数说明:
data – 提供统计图数据及用户自定义属性的
ExtGraphProperty对象
htmlLink -生成超链接的缓冲
imageWidth – 统计图的宽度
imageHeight – 统计图的高度
功能说明: 画统计图
Returns : BufferedImage对象