chartdirector是干什么的?
她是一图形报表工具,也就是通过设置一些属性,生成像饼图、柱状图等。
官方网站:http://www.advsofteng.com/
下载资源包:http://download2.advsofteng.com/chartdir_java.war
里面有详细的文档,还有各种例子,包括在jsp中怎么写这个例子、在java中怎么写等等。
入门非常简单,要生成出漂亮的报表图形,还是有待具体查看文档、实例、多实践。
简单例子
写道
//一个简单的饼图实例
// 报表的数据The data for the pie chart
double[] data = {25, 18, 15, 12, 8, 30, 35};
// 数据对应的名称The labels for the pie chart
String[] labels = {"Labor", "Licenses", "Taxes", "Legal", "Insurance",
"Facilities", "Production"};
//这是图像的大小 Create a PieChart object of size 360 x 300 pixels
PieChart c = new PieChart(360, 300);
//这里指在图像中的位置(前两位),后面就是饼图的半径了 Set the center of the pie at (180, 140) and the radius to 100 pixels
c.setPieSize(180, 140, 100);
// Set the pie data and the pie labels
c.setData(data, labels);
//在d盘下生成一张图片
c.makeTmpFile("d:\\");
// 报表的数据The data for the pie chart
double[] data = {25, 18, 15, 12, 8, 30, 35};
// 数据对应的名称The labels for the pie chart
String[] labels = {"Labor", "Licenses", "Taxes", "Legal", "Insurance",
"Facilities", "Production"};
//这是图像的大小 Create a PieChart object of size 360 x 300 pixels
PieChart c = new PieChart(360, 300);
//这里指在图像中的位置(前两位),后面就是饼图的半径了 Set the center of the pie at (180, 140) and the radius to 100 pixels
c.setPieSize(180, 140, 100);
// Set the pie data and the pie labels
c.setData(data, labels);
//在d盘下生成一张图片
c.makeTmpFile("d:\\");
当然还可以设置3D效果、背景色,加入一些小图标等等,功能还是很强大(毕竟是收费的),中文也能很好的处理。漂亮、复杂的图形基本都能满足。
另外两个工具:
Jfreechart http://www.jfree.org/jfreechart/ 免费 文档收费,功能强大,基本能满足常用的图表,但是,使用起来不是很舒服(个人认为)。
FusionChart http://www.fusioncharts.com/ 收费 这个可以生成xml文件,供flash使用,具有更好的操作性。fusionchart本身提供了多种flash,主要是针对不同的图表,使用时,只需要配置相应的xml文件即可。