资源描述:
《excel几种简单常用的图表》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、Excel几种简单常用的图表1、柱状图(3D柱状图)double[][]data=newdouble[][]{{},{},…{}};//柱状图数据String[]rows=newString[]{"","",…,""};//柱状图表示的含义String[]columns=newString[]{"","",…,""};//柱状图所区分的名字CategoryDatasetdataset=DatasetUtilities.createCategoryDataset(rows,columns,data);//创建普通柱状图JFree
2、Chartchart=ChartFactory.createBarChart(chartTitle,xName,yName,dataset,PlotOrientation.VERTICAL,true,false,false);//创建3D柱状图/*JFreeChartjc=ChartFactory.createBarChart3D(chartTitle,xName,yName,dataset,PlotOrientation.VERTICAL,true,false,false);*///设置图表字体是否模糊(true---模糊,
3、false----不模糊)chart.setAntiAlias(false);//图片背景色chart.setBackgroundPaint(Color.white);//设置图标题的字体Fontfont=newFont("隶书",Font.BOLD,25);//重新设置titleTextTitletitle=newTextTitle(chartTitle);title.setFont(font);chart.setTitle(title);//为图表设置柱子CategoryPlotplot=chart.getCategory
4、Plot();//设置柱子横虚线可见plot.setRangeGridlinesVisible(true);//设置柱子虚线颜色plot.setRangeGridlinePaint(Color.gray);//数据轴精度NumberAxisna=(NumberAxis)plot.getRangeAxis();//数据轴数据标签的显示格式DecimalFormatdf=newDecimalFormat("#0.00");na.setNumberFormatOverride(df);//设置X、Y轴标签字体FontlabelFon
5、t=newFont("SansSerif",Font.TRUETYPE_FONT,12);//X轴设置CategoryAxisdomainAxis=plot.getDomainAxis();domainAxis.setLabelFont(labelFont);domainAxis.setTickLabelFont(labelFont);beconsistentwithinthesamedisk.Alternateunifiedcorerequirementsplacedontheterminalstripterminals,o
6、nlineidentityandensurethecoppercoreisnotexposed.6.4.6enclosurewithinthesametothecablecoreprovidesbindingintoacircle,harnesstiespacingisgenerally100mm;branchofficesshallbebindingonbothends,eachcore//横轴上的Label是否完全显示domainAxis.setMaximumCategoryLabelWidthRatio(0.6f);//
7、设置图片左端距离domainAxis.setLowerMargin(0.1);//设置图片右端距离domainAxis.setUpperMargin(0.1);plot.setDomainAxis(domainAxis);//设置柱图背景色plot.setBackgroundPaint(newColor(255,255,204));//Y轴ValueAxisrangeAxis=plot.getRangeAxis();rangeAxis.setLabelFont(labelFont);rangeAxis.setTickLabel
8、Font(labelFont);//设置最高的一个Item与图片顶端的距离rangeAxis.setUpperMargin(0.15);//设置最低的一个Item与图片底端的距离rangeAxis.setLowerMargin(0.15);plot.setRangeAxis(