`
everlxq
  • 浏览: 108656 次
  • 性别: Icon_minigender_1
  • 来自: 青岛
社区版块
存档分类
最新评论

饼状图

 
阅读更多
package com.web.utils;

import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Rectangle;
import java.awt.Shape;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Random;

import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import org.jfree.chart.ChartRenderingInfo;
import org.jfree.chart.ChartUtilities;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.CategoryAxis;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.entity.ChartEntity;
import org.jfree.chart.entity.StandardEntityCollection;
import org.jfree.chart.labels.CategoryToolTipGenerator;
import org.jfree.chart.labels.ItemLabelAnchor;
import org.jfree.chart.labels.ItemLabelPosition;
import org.jfree.chart.labels.StandardCategoryItemLabelGenerator;
import org.jfree.chart.labels.StandardCategoryToolTipGenerator;
import org.jfree.chart.labels.StandardPieSectionLabelGenerator;
import org.jfree.chart.labels.StandardPieToolTipGenerator;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PiePlot;
import org.jfree.chart.plot.PiePlot3D;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.category.BarRenderer;
import org.jfree.chart.renderer.category.BarRenderer3D;
import org.jfree.chart.renderer.category.LineAndShapeRenderer;
import org.jfree.chart.servlet.ServletUtilities;
import org.jfree.chart.title.TextTitle;
import org.jfree.chart.urls.StandardCategoryURLGenerator;
import org.jfree.chart.urls.StandardPieURLGenerator;
import org.jfree.ui.TextAnchor;

public class BarChart {
	public BarChart() {
	}
	
	/**
	 * 图形相关数据设置
	 * 
	 * @param request
	 * @param response
	 * @return
	 * @throws IOException
	 */
	public String showBar(HttpServletResponse response,
			HttpSession session, String realPath) throws IOException {
		String filename = null;
		FileOperate fo = new FileOperate();
		PrintWriter pw = response.getWriter(); // 输出MAP信息
		int width = 1000;
		int height = 600;
		JFreeChart chart = (JFreeChart)FacesUtils.getValueInHashtableOfSession("chart");
		CategoryPlot plot = chart.getCategoryPlot();
		
		BarRenderer customBarRenderer = (BarRenderer) plot.getRenderer(); 
		//设定柱子上面的颜色 
		customBarRenderer.setSeriesPaint(0, Color.decode("#40A410")); // 给series1 Bar 
		customBarRenderer.setSeriesPaint(1, Color.decode("#40A410")); // 给series2 Bar 
		customBarRenderer.setSeriesPaint(2, Color.decode("#40A410")); // 给series3 Bar 
		customBarRenderer.setSeriesPaint(3, Color.decode("#40A410")); // 给series4 Bar 
		customBarRenderer.setSeriesPaint(4, Color.decode("#40A410")); // 给series5 Bar 
		customBarRenderer.setSeriesPaint(5, Color.decode("#40A410")); // 给series6 Bar 
		customBarRenderer.setSeriesOutlinePaint(0,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(1,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(2,Color.BLACK); //边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(3,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(4,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(5,Color.BLACK); //边框为黑色
		customBarRenderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator());
		customBarRenderer.setBaseItemLabelsVisible(true);
		customBarRenderer.setBasePositiveItemLabelPosition(new ItemLabelPosition(ItemLabelAnchor.OUTSIDE12,TextAnchor.BASELINE_LEFT));
		customBarRenderer.setItemLabelAnchorOffset(10D);
		customBarRenderer.setMaximumBarWidth(0.03);
		customBarRenderer.setMinimumBarLength(0.03);
		String url=(String)FacesUtils.getValueInHashtableOfSession("url");
		customBarRenderer.setBaseItemURLGenerator(new StandardCategoryURLGenerator(url,"p1","p2"));
		CategoryToolTipGenerator generatorToolTip = new StandardCategoryToolTipGenerator("{0}{1}{2}", NumberFormat.getInstance(Locale.CHINESE));  
		customBarRenderer.setBaseToolTipGenerator(generatorToolTip);
		plot.setRenderer(customBarRenderer);	
		plot.setDomainGridlinePaint(Color.yellow);
		
		// 图片输出流,图片的保存路径
		Random rand = new Random();
		int i = rand.nextInt();
		String imgPath = realPath + "chartTemp\\" + System.nanoTime()+Tools.getRandom(i)+ ".png";
		fo.newFolder(realPath + "chartTemp\\");
		FileOutputStream fout = new FileOutputStream(imgPath);
		// shape是指热点的区域
		Shape shape = new Rectangle(20, 10);
		ChartEntity entity = new ChartEntity(shape);
		StandardEntityCollection coll = new StandardEntityCollection();
		coll.add(entity);
		ChartRenderingInfo info = new ChartRenderingInfo(coll);
		// 并将图片信息写入到info对象中
		ChartUtilities.writeChartAsPNG(fout, chart, width, height, info);
		// 生成图片,并返回图片名称
		filename = ServletUtilities.saveChartAsPNG(chart, width, height, info, session);
		// 读取ChartRenderingInfo对象,生成Map信息,这些信息写在pw的输出流中,这里的输出流就是Response.out,也就是直接输出到页面了。
		ChartUtilities.writeImageMap(pw, filename, info, false);
		pw.flush(); // 调用pw.flush()方法关闭IO流
		return filename;
	}
	
	public String showBarana(HttpServletResponse response,
			HttpSession session, String realPath) throws IOException {
		String filename = null;
		FileOperate fo = new FileOperate();
		PrintWriter pw = response.getWriter(); // 输出MAP信息
		int width = 1000;
		int height = 600;
		JFreeChart chart = (JFreeChart)FacesUtils.getValueInHashtableOfSession("chart");
		CategoryPlot plot = chart.getCategoryPlot();
		
		BarRenderer customBarRenderer = (BarRenderer) plot.getRenderer(); 
		//设定柱子上面的颜色 
		customBarRenderer.setSeriesPaint(0, Color.decode("#40A410")); // 给series1 Bar 
		customBarRenderer.setSeriesPaint(1, Color.decode("#40A410")); // 给series2 Bar 
		customBarRenderer.setSeriesPaint(2, Color.decode("#40A410")); // 给series3 Bar 
		customBarRenderer.setSeriesPaint(3, Color.decode("#40A410")); // 给series4 Bar 
		customBarRenderer.setSeriesPaint(4, Color.decode("#40A410")); // 给series5 Bar 
		customBarRenderer.setSeriesPaint(5, Color.decode("#40A410")); // 给series6 Bar 
		customBarRenderer.setSeriesOutlinePaint(0,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(1,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(2,Color.BLACK); //边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(3,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(4,Color.BLACK);//边框为黑色 
		customBarRenderer.setSeriesOutlinePaint(5,Color.BLACK); //边框为黑色
		customBarRenderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator());
		customBarRenderer.setBaseItemLabelsVisible(true);
		customBarRenderer.setBasePositiveItemLabelPosition(new ItemLabelPosition(ItemLabelAnchor.OUTSIDE12,TextAnchor.BASELINE_LEFT));
		customBarRenderer.setItemLabelAnchorOffset(10D);
		customBarRenderer.setMaximumBarWidth(0.03);
		customBarRenderer.setMinimumBarLength(0.03);
		String url=(String)FacesUtils.getValueInHashtableOfSession("url"); 
		customBarRenderer.setBaseItemURLGenerator(new StandardCategoryURLGenerator(url,"p1","p2"));
		CategoryToolTipGenerator generatorToolTip = new StandardCategoryToolTipGenerator("{0}{1}{2}", NumberFormat.getInstance(Locale.CHINESE));  
		customBarRenderer.setBaseToolTipGenerator(generatorToolTip);
		plot.setRenderer(customBarRenderer);	
		plot.setDomainGridlinePaint(Color.yellow);
		
		// 图片输出流,图片的保存路径
		Random rand = new Random();
		int i = rand.nextInt();
		String imgPath = realPath + "chartTemp\\" + System.nanoTime()+Tools.getRandom(i)+ ".png";
		fo.newFolder(realPath + "chartTemp\\");
		FileOutputStream fout = new FileOutputStream(imgPath);
		// shape是指热点的区域
		Shape shape = new Rectangle(20, 10);
		ChartEntity entity = new ChartEntity(shape);
		StandardEntityCollection coll = new StandardEntityCollection();
		coll.add(entity);
		ChartRenderingInfo info = new ChartRenderingInfo(coll);
		// 并将图片信息写入到info对象中
		ChartUtilities.writeChartAsPNG(fout, chart, width, height, info);
		// 生成图片,并返回图片名称
		filename = ServletUtilities.saveChartAsPNG(chart, width, height, info, session);
		// 读取ChartRenderingInfo对象,生成Map信息,这些信息写在pw的输出流中,这里的输出流就是Response.out,也就是直接输出到页面了。
		ChartUtilities.writeImageMap(pw, filename, info, false);
		pw.flush(); // 调用pw.flush()方法关闭IO流
		return filename;
	}
	
	
	
	
	public String showpie(HttpServletResponse response,
			HttpSession session, String realPath) throws IOException {
		
		String filename = null;
		FileOperate fo = new FileOperate();
		PrintWriter pw = response.getWriter(); // 输出MAP信息
		int width = 800;
		int height = 600;
		JFreeChart chart = (JFreeChart)FacesUtils.getValueInHashtableOfSession("chart");
		PiePlot plot = (PiePlot) chart.getPlot(); 
		// requestUrl为链接地址
		String url=(String)FacesUtils.getValueInHashtableOfSession("url");
		  plot.setURLGenerator(new StandardPieURLGenerator(url, "name"));
		  // 图片中显示百分比:默认方式
		  plot.setLabelGenerator(new StandardPieSectionLabelGenerator(
		    StandardPieToolTipGenerator.DEFAULT_TOOLTIP_FORMAT));
		  // 图片中显示百分比:自定义方式,{0} 表示选项, {1} 表示数值,
		  //{2} 表示所占比例 ,小数点后两位
		  plot.setLabelGenerator(new StandardPieSectionLabelGenerator(
		    "{0}={1}({2})", NumberFormat.getNumberInstance(),
		    new DecimalFormat("0.00%")));
		  // 图例显示百分比:自定义方式, {0} 表示选项, {1} 表示数值, {2} 表示所占比例
		  plot.setLegendLabelGenerator(new StandardPieSectionLabelGenerator(
		      "{0}"));
		  // 指定图片的透明度(0.0-1.0)
		  plot.setForegroundAlpha(1.0f);
		  // 指定显示的饼图上圆形(true)还椭圆形(false)
		  plot.setCircular(true);
		  // 设置图上分类标签label的字体,解决中文乱码
		  plot.setLabelFont(new Font("黑体", Font.PLAIN, 12));
		  // 设置图上分类标签label的最大宽度,相对与plot的百分比
		  plot.setMaximumLabelWidth(0.2);
		  // 设置3D饼图的Z轴高度(0.0~1.0)
		//  plot.setDepthFactor(0.07);
		  //设置起始角度,默认值为90,当为0时,起始值在3点钟方向
		  plot.setStartAngle(45);
		  // 设置图标题的字体,解决中文乱码
		  TextTitle textTitle = chart.getTitle();
		  textTitle.setFont(new Font("黑体", Font.PLAIN, 20));
		  // 设置背景色为白色
		  chart.setBackgroundPaint(Color.white);
		  // 设置Legend部分字体,解决中文乱码
		  chart.getLegend().setItemFont(new Font("宋体", Font.PLAIN, 12));
		  // 输出图片到文件
		Random rand = new Random();
		int i = rand.nextInt();
		String imgPath = realPath + "chartTemp\\" + System.nanoTime()+Tools.getRandom(i)+ ".png";
		fo.newFolder(realPath + "chartTemp\\");
		FileOutputStream fout = new FileOutputStream(imgPath);
		// shape是指热点的区域
		Shape shape = new Rectangle(20, 10);
		ChartEntity entity = new ChartEntity(shape);
		StandardEntityCollection coll = new StandardEntityCollection();
		coll.add(entity);
		ChartRenderingInfo info = new ChartRenderingInfo(coll);
		// 并将图片信息写入到info对象中
		ChartUtilities.writeChartAsPNG(fout, chart, width, height, info);
		// 生成图片,并返回图片名称
		filename = ServletUtilities.saveChartAsPNG(chart, width, height, info, session);
		// 读取ChartRenderingInfo对象,生成Map信息,这些信息写在pw的输出流中,这里的输出流就是Response.out,也就是直接输出到页面了。
		ChartUtilities.writeImageMap(pw, filename, info, false);
		pw.flush(); // 调用pw.flush()方法关闭IO流
		return filename;
	}
	public String showpie1(HttpServletResponse response,
			HttpSession session, String realPath) throws IOException {
		
		String filename = null;
		FileOperate fo = new FileOperate();
		PrintWriter pw = response.getWriter(); // 输出MAP信息
		int width = 800;
		int height = 600;
		JFreeChart chart = (JFreeChart)FacesUtils.getValueInHashtableOfSession("chart");
		PiePlot plot = (PiePlot) chart.getPlot(); 
		// requestUrl为链接地址
		//String url=(String)FacesUtils.getValueInHashtableOfSession("url");
		 // plot.setURLGenerator(new StandardPieURLGenerator(url, "name"));
		  // 图片中显示百分比:默认方式
		  plot.setLabelGenerator(new StandardPieSectionLabelGenerator(
		    StandardPieToolTipGenerator.DEFAULT_TOOLTIP_FORMAT));
		  // 图片中显示百分比:自定义方式,{0} 表示选项, {1} 表示数值,
		  //{2} 表示所占比例 ,小数点后两位
		  plot.setLabelGenerator(new StandardPieSectionLabelGenerator(
		    "{0}={1}({2})", NumberFormat.getNumberInstance(),
		    new DecimalFormat("0.00%")));
		  // 图例显示百分比:自定义方式, {0} 表示选项, {1} 表示数值, {2} 表示所占比例
		  plot.setLegendLabelGenerator(new StandardPieSectionLabelGenerator(
		      "{0}"));
		  // 指定图片的透明度(0.0-1.0)
		  plot.setForegroundAlpha(1.0f);
		  // 指定显示的饼图上圆形(true)还椭圆形(false)
		  plot.setCircular(true);
		  // 设置图上分类标签label的字体,解决中文乱码
		  plot.setLabelFont(new Font("黑体", Font.PLAIN, 12));
		  // 设置图上分类标签label的最大宽度,相对与plot的百分比
		  plot.setMaximumLabelWidth(0.2);
		  // 设置3D饼图的Z轴高度(0.0~1.0)
		//  plot.setDepthFactor(0.07);
		  //设置起始角度,默认值为90,当为0时,起始值在3点钟方向
		  plot.setStartAngle(45);
		  // 设置图标题的字体,解决中文乱码
		  TextTitle textTitle = chart.getTitle();
		  textTitle.setFont(new Font("黑体", Font.PLAIN, 20));
		  // 设置背景色为白色
		  chart.setBackgroundPaint(Color.white);
		  // 设置Legend部分字体,解决中文乱码
		  chart.getLegend().setItemFont(new Font("宋体", Font.PLAIN, 12));
		  // 输出图片到文件
		Random rand = new Random();
		int i = rand.nextInt();
		String imgPath = realPath + "chartTemp\\" + System.nanoTime()+Tools.getRandom(i)+ ".png";
		fo.newFolder(realPath + "chartTemp\\");
		FileOutputStream fout = new FileOutputStream(imgPath);
		// shape是指热点的区域
		Shape shape = new Rectangle(20, 10);
		ChartEntity entity = new ChartEntity(shape);
		StandardEntityCollection coll = new StandardEntityCollection();
		coll.add(entity);
		ChartRenderingInfo info = new ChartRenderingInfo(coll);
		// 并将图片信息写入到info对象中
		ChartUtilities.writeChartAsPNG(fout, chart, width, height, info);
		// 生成图片,并返回图片名称
		filename = ServletUtilities.saveChartAsPNG(chart, width, height, info, session);
		// 读取ChartRenderingInfo对象,生成Map信息,这些信息写在pw的输出流中,这里的输出流就是Response.out,也就是直接输出到页面了。
		ChartUtilities.writeImageMap(pw, filename, info, false);
		pw.flush(); // 调用pw.flush()方法关闭IO流
		return filename;
	}
	
	public String showline(HttpServletResponse response,
			HttpSession session, String realPath) throws IOException {
		
		String filename = null;
		FileOperate fo = new FileOperate();
		PrintWriter pw = response.getWriter(); // 输出MAP信息
		int width = 800;
		int height = 300;
		JFreeChart chart = (JFreeChart)FacesUtils.getValueInHashtableOfSession("chart");
		 CategoryPlot plot = chart.getCategoryPlot();  
	        plot.setBackgroundPaint(Color.LIGHT_GRAY); // 设置绘图区背景色  
	        plot.setRangeGridlinePaint(Color.WHITE); // 设置水平方向背景线颜色  
	        plot.setRangeGridlinesVisible(true);// 设置是否显示水平方向背景线,默认值为true  
	        plot.setDomainGridlinePaint(Color.WHITE); // 设置垂直方向背景线颜色  
	        plot.setDomainGridlinesVisible(true); // 设置是否显示垂直方向背景线,默认值为false  
	          
	          
	        CategoryAxis domainAxis = plot.getDomainAxis();    
	        domainAxis.setLowerMargin(0.01);// 左边距 边框距离  
	        domainAxis.setUpperMargin(0.06);// 右边距 边框距离,防止最后边的一个数据靠近了坐标轴。  
	        domainAxis.setMaximumCategoryLabelLines(2);  
	          
	        ValueAxis rangeAxis = plot.getRangeAxis();  
	        rangeAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());//Y轴显示整数  
	        rangeAxis.setAutoRangeMinimumSize(1);   //最小跨度  
	        rangeAxis.setUpperMargin(0.18);//上边距,防止最大的一个数据靠近了坐标轴。     
	        rangeAxis.setLowerBound(0);   //最小值显示0  
	        rangeAxis.setAutoRange(false);   //不自动分配Y轴数据  
	        rangeAxis.setTickMarkStroke(new BasicStroke(1.6f));     // 设置坐标标记大小  
	        rangeAxis.setTickMarkPaint(Color.GREEN);     // 设置坐标标记颜色  
	  
	          
	          
	     // 获取折线对象  
	        LineAndShapeRenderer renderer = (LineAndShapeRenderer) plot.getRenderer();  
	        BasicStroke realLine = new BasicStroke(3.0f); // 设置实线  
	        // 设置虚线  
	        float dashes[] = { 5.0f };   
	        BasicStroke brokenLine = new BasicStroke(5.2f, // 线条粗细  
	                BasicStroke.JOIN_MITER, // 端点风格  
	                BasicStroke.CAP_BUTT, // 折点风格  
	                8f, dashes, 1.6f);   
	          
	        plot.setNoDataMessage("无对应的数据,请重新查询。");  
	        plot.setNoDataMessagePaint(Color.RED);
		  // 设置图标题的字体,解决中文乱码
		  TextTitle textTitle = chart.getTitle();
		  textTitle.setFont(new Font("黑体", Font.PLAIN, 20));
		  // 设置背景色为白色
		  chart.setBackgroundPaint(Color.white);
		  // 设置Legend部分字体,解决中文乱码
		  chart.getLegend().setItemFont(new Font("宋体", Font.PLAIN, 12));
		  // 输出图片到文件
		Random rand = new Random();
		int i = rand.nextInt();
		String imgPath = realPath + "chartTemp\\" + System.nanoTime()+Tools.getRandom(i)+ ".png";
		fo.newFolder(realPath + "chartTemp\\");
		FileOutputStream fout = new FileOutputStream(imgPath);
		// shape是指热点的区域
		Shape shape = new Rectangle(20, 10);
		ChartEntity entity = new ChartEntity(shape);
		StandardEntityCollection coll = new StandardEntityCollection();
		coll.add(entity);
		ChartRenderingInfo info = new ChartRenderingInfo(coll);
		// 并将图片信息写入到info对象中
		ChartUtilities.writeChartAsPNG(fout, chart, width, height, info);
		// 生成图片,并返回图片名称
		filename = ServletUtilities.saveChartAsPNG(chart, width, height, info, session);
		// 读取ChartRenderingInfo对象,生成Map信息,这些信息写在pw的输出流中,这里的输出流就是Response.out,也就是直接输出到页面了。
		ChartUtilities.writeImageMap(pw, filename, info, false);
		pw.flush(); // 调用pw.flush()方法关闭IO流
		return filename;
	}
	
}


分享到:
评论

相关推荐

    柱状图转换成饼状图

    在数据分析和可视化领域,柱状图和饼状图是两种常用的数据表示方法。它们各有特点,适用于不同的场景。本文将详细探讨如何将柱状图转换为饼状图,并阐述这两种图表各自的优势和适用情况。 首先,柱状图是一种用于...

    Unity3d 饼状图

    在Unity3D游戏开发中,饼状图是一种常见的数据可视化工具,用于表示各项占比关系。本文将深入探讨如何使用Unity3D的Mesh重绘技术来创建动态显示的饼状图。 首先,我们要理解饼状图的基本原理。饼状图通过分割一个...

    java饼状图生成实例

    在Java编程中,生成饼状图是一种常见的数据可视化方法,尤其适用于展示各项比例关系。饼状图由多个扇形组成,每个扇形代表数据集中的一项,其大小与该项在总数据中的比例相对应。本实例将详细介绍如何在Java中创建...

    立体饼状图资源源码.rar

    立体饼状图是一种数据可视化工具,它以三维立体的形式展示数据的比例关系,使得数据更加直观易懂。在IT行业中,特别是在数据分析、报表制作以及UI设计等领域,立体饼状图经常被用于表现各部分占整体的比例,同时其...

    Qml饼状图QmlChartView.7z

    在这个场景中,"Qml饼状图QmlChartView.7z" 提供的资源很可能是一个关于如何在QML中创建和展示饼状图的示例或库。 饼状图是一种常见的数据可视化工具,用于显示数据比例关系。在QML中,我们可以使用QmlChartView...

    支持弹出的饼状图

    在IT行业中,饼状图是一种常见的数据可视化工具,它能够直观地展示各部分与整体之间的比例关系。在本案例中,我们关注的是“支持弹出的饼状图”,这意味着我们有一个特殊的饼状图实现,允许用户点击图表上的扇形区域...

    piechart.zip_Labview饼状图_labview piechart_labview 画饼图_piechart la

    在LabVIEW编程环境中,饼状图(Pie Chart)是一种常用的数据可视化工具,它能直观地展示数据比例关系,尤其适用于对比各个部分占总体的比例。标题中的"piechart.zip_Labview饼状图_labview piechart_labview 画饼图_...

    Delphi 实现饼状图和动画

    本示例专注于使用Delphi创建饼状图以及实现动画效果,这对于数据分析、报告展示以及各种统计应用至关重要。以下是对这两个主题的详细说明: 1. **Delphi中的饼状图**: - 饼状图是一种数据可视化工具,它通过将...

    使用three.js绘制3d图表(柱状图,饼状图,环状图,面积图等).zip

    饼状图,环状图,面积图等).zip使用three.js绘制3d图表(柱状图,饼状图,环状图,面积图等).zip使用three.js绘制3d图表(柱状图,饼状图,环状图,面积图等).zip使用three.js绘制3d图表(柱状图,饼状图,环状图...

    HTML中的3D饼状图

    4. **数据绑定**:将数据与饼状图的各个部分关联起来,通过改变数据,饼状图的形状和大小也会相应变化,这有助于用户理解数据的分布。 5. **交互性**:3D饼状图通常会添加鼠标悬停、点击等交互效果,例如显示详细的...

    java 实现饼状图、柱状图、折线图

    在Java编程语言中,生成数据可视化图形,如饼状图、柱状图和折线图,是数据分析和展示的关键步骤。这些图表可以帮助我们直观地理解数据分布和趋势。本篇文章将详细探讨如何使用Java实现这三种图表。 首先,饼状图...

    QT自定义控件-饼状图(环形饼状图)(含代码和demo)

    本教程将详细讲解如何在QT中实现一个自定义的饼状图(环形饼状图)控件,包括代码解析和实际运行的demo。 首先,我们需要了解QT中的QWidget类,它是所有用户界面组件的基础类,提供了基本的绘制、事件处理等功能。...

    饼状图(可转动)

    饼状图是一种常见的数据可视化工具,它通过将整个圆盘分割成不同的扇形来表示各部分数据占总体的比例。在本案例中,我们讨论的是一个可转动的饼状图,这种图表不仅能够清晰地展示数据比例,还具有动态交互功能,用户...

    C++绘制3D饼状图

    在C++编程中,创建3D饼状图是一项有趣且实用的任务,特别是在数据可视化和图形用户界面(GUI)设计中。3D饼状图能够更直观地展示数据比例和关系,使得用户可以更容易理解复杂的统计数据。本文将深入探讨如何使用C++...

    DevExpress之ChartControl实现饼状图百分比演示实例

    在DevExpress的图表控件ChartControl中,饼状图是一种常用的数据可视化方式,它能直观地展示各个部分在整体中所占的比例。本实例主要讲解如何使用DevExpress ChartControl创建饼状图,并显示百分比,这对于数据分析...

    3D饼状图,3D阶梯图,three.js实现

    本文将深入探讨如何使用JavaScript库three.js来实现3D饼状图和3D阶梯图。 首先,我们要了解`three.js`。这是一个强大的JavaScript库,专门用于在Web浏览器中创建和渲染3D图形。它利用WebGL技术,使得无需安装任何...

    java jsp+servlet根据数据生成饼状图.rar

    在这个“java jsp+servlet根据数据生成饼状图.rar”项目中,开发者通过JSP和Servlet实现了根据数据动态生成饼状图的功能。饼状图是一种常用的数据可视化方式,用于表示各部分占整体的比例关系。以下将详细介绍这个...

    C#饼状图PieChart

    在.NET框架中,C#提供了一种强大的图表控件,用于可视化数据,其中包括饼状图(PieChart)。饼状图是一种常用来展示部分与整体之间关系的图表,它将数据分成若干个扇区,每个扇区代表数据的一部分。在这个例子中,...

    QT自定义控件-饼状图(含源码和demo)

    本资源提供了一个基于QT框架的自定义饼状图控件,该控件实现了类似Echarts的数据可视化效果,能够帮助开发者在QT应用中轻松展示数据分布情况。 饼状图是一种常用的统计图表,它通过将圆形划分为多个扇区来表示数据...

    js饼状图+柱状图+曲线图

    本文将详细讲解使用JavaScript实现饼状图、柱状图和曲线图的相关知识点。 首先,饼状图是一种常用于表示部分与整体之间关系的数据图形,每个扇区代表一个类别,其大小与该类别的比例成正比。JavaScript中实现饼状图...

Global site tag (gtag.js) - Google Analytics