How to display values with in piechart using Jfreechart(values in sector )

I am using Jfreechart to create pie charts. Values are displayed outside pie chart as labels. I want to display the values within the pie sectors only. How can i achieve this. Please can any one help me.

Thanks in advance

Use setSimpleLabels(), as shown below; org.jfree.chart.demo.PieChartDemo1 is a good starting point.

PiePlot plot = (PiePlot) chart.getPlot();
plot.setSimpleLabels(true);
时间: 2024-10-13 11:40:29

How to display values with in piechart using Jfreechart(values in sector )的相关文章

Android PieChart 饼图控件

今天写一个饼图自定义View的文章.由于公司的项目需要用到饼图,UI给的设计图和自己找的一个饼图框架的标题位置不符,所以就自己画了一个. 1,使用预览 PieChart mChart mChart = (PieChart) findViewById(R.id.pieChar); mChart = (PieChart) findViewById(R.id.pieChar); String[] titles = new String[] {"钱包余额","金钱袋资产",

Django objects.values

values(*fields) 返回一个ValuesQuerySet —— QuerySet 的一个子类,迭代时返回字典而不是模型实例对象. 每个字典表示一个对象,键对应于模型对象的属性名称. 下面的例子将values() 与普通的模型对象进行比较: # This list contains a Blog object. >>> Blog.objects.filter(name__startswith='Beatles') [<Blog: Beatles Blog>] # T

Java 中如何对 Iterator&lt;Text&gt; values 实现两次遍历

Just like this!!!!!!!!!!!!!!!! =============================================================== public static class Reduce extends MapReduceBase implements Reducer<IntWritable, Text, NullWritable, Text> { @Override public void reduce(IntWritable dumm

oracle到底能不能insert into 多个values!?

稍微熟悉oracle的都知道,如果我们想一条SQL语句向表中插入多个值的话,如果INSERT INTO 某表 VALUES(各个值),VALUES(各个值),.....;这样会报错的,因为oracle是不支持这种写法的,如果多个INSERT INTO VALUEES(各个值);这样以";"隔开一同执行也是不行的,oracle也是不支持的. 不过MySQL这两种方式都是支持的. SQL Server也是不支持这两种写法的. 然而,有时我们在开发过程中,如果是用的oracle数据库的话,有

将Map中的key和values转化为List

在项目开发中,常常会用到Map,而map的存放是无序的,它存放的是键值对,也就是一个键对应一个值.有时需要将Map的key和value转化为List来进行相关的操作,现在通过实例来实现Map的key和value的转化. 代码如下: package com.example; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import

Java 可变参数Object... values

public List<?> find(final String queryString, final Object... values) throws DataAccessException 定义实参个数可变的方法 只要在一个形参的"类型"与"参数名"之间加上三个连续的"."(即"...",英文里的句中省略号),就可以让它和不确定个实参相匹配.而一个带有这样的形参的方法,就是一个实参个数可变的方法. 清单1:一个

4.1 primitive and reference values

ECMAScript variables may contains two different types of data: primitive values and reference values. Primitive values are simple atomic pieces of data, while reference values are objects that may be made up of multiple values. The five primitive typ

【leetcode】1090. Largest Values From Labels

题目如下: We have a set of items: the i-th item has value values[i] and label labels[i]. Then, we choose a subset S of these items, such that: |S| <= num_wanted For every label L, the number of items in Swith label L is <= use_limit. Return the largest

第4章:缓冲区、着色器、GLSL

原文链接: http://www.rastertek.com/gl40tut04.html Tutorial 4: Buffers, Shaders, and GLSL This tutorial will be the introduction to writing vertex and pixel shaders in OpenGL 4.0. It will also be the introduction to using vertex and index buffers in OpenG