piechart

Stairstepping piecharts with asp:chart control

I was perusing the asp.net chart control's sample website, and came across something in the pie chart gallery. There was 3 pie charts, "stair stepped" on top of each other. I starting using this control for a financial services application, and would like to replicate this effect. It looks like this: I'd post some code on what I've ac...

.NET pie chart: how to add text to slices and rotate chart

The code below creates a 24 slice pie chart. How do I: Add text labels to each slice a la "Wheel of Fortune". Rotate the pie chart? I want it to spin like "Wheel of Fortune". private void DrawPieChart() { Graphics g = this.CreateGraphics(); g.Clear(this.BackColor); Rectangle rect = new Rectangle(0, 0, 300, 300); float...

Jfreechart help

Is it possible to draw a 3D chart using JfreeChart like in the following link.If possible can anyone give some hints and some snippets of code on what parameters of Plot can be used to do this. link text ...

pie charts

Hi All, Any possible to create below type(please go through the link) of pie charts and values create dynamically? ![alt text][1] http://img406.imageshack.us/img406/7139/piechart.png ...

Infragistics Clickable PieChart

I am attempting to create a clickable piechart in ASP.NET 2.0 with C# using version 7.1 of Infragistics' software. The chart appears as it should, but the function marked in the OnChartDataClicked event is not called. From the .aspx: <igchart:UltraChart ID="UltraChart1" runat="server" OnChartDataClicked="DataRegionClicked">        <...

Annotations on a JFreeChart Pie Chart

Specifically I am looking to add text annotations to specific locations to a JFreeChart that is being output to a png file for web use. Can/how do annotations get added to pie charts. I have been able to successfully add annotations to XYPlots, but don't know how to overlay or add one to a PiePlot. My full task is to use the PiePlot to ...

Mint.com Pie and Bar Charts

Does anyone know what frameworks they are using to create these or are they doing all of these in house? Thanks ...

Reporting Services 2008 Pie Chart from multiple fields

I want a pie chart where each of these values represent a slice of the value Total_nr_of_shipments: Late_delivery_forwarder_fault, Late_delivery_shipper_fault, Late_delivery_consignee_fault, Late_delivery_other and the slice that represents the remaining part of the total number of shipments that makes up the shipments delivered on time...

Best java 3D pie chart API

Which is the best java 3D pie chart API available to use in a standalone java application? The pie chart should also support detached property. ...

Making A Graphic Pie Chart In C#

I'm trying to write a Windows Application that shows a pie chart with seven unequal slices (25%, 20%, 18%, 17%, 10%, 10%, 10%) all of them will be colored differently. So far I have made Pens and Brushes with colors attached and drawn a circle. This is what I have so far private void Form1_Paint(object sender, PaintEventArgs e) { ...

Pie Chart sections out of order in JasperReports

I am creating a pie chart using a JRBeanCollectionDataSource. I create that with an ArrayList whose contents are ordered specifically. When JasperReports uses JFreeChart to generate the Pie, the content order is remixed in no apparent ordering. JasperReports 3.5.3 JFreeChart 1.0.11 Java 1.6 ...

Dynamic Pie Charts

I am searching for a free charting library, either in Java, JS, or Flash, that allows for drill-down type interaction. An example of this sort of behavior can be found in the trends section on mint.com. JFreeChart seems like the generally recommended choice for charting purposes, but from a little browsing of their API there doesn't seem...

problem drawing gRaphaeljs pie chart

Hi, I was trying to draw the raphaeljs piechart. I used the same example as shown on "http://g.raphaeljs.com/piechart2.html". It renders me the text but the pie charts goes missing.Can someone please help? please find the code below. g·Raphaël Dynamic Pie Chart Demo ...

Could not able to render simple Piechart using ExtJs 3.0

I was trying to render a simple piechart using ExtJs 3.0 but could not. Below is the snippet: <div id="ext_grid_panel"> <div id="blackout_tab"> <div id="grid_blackout_current"></div> </div> <div id="gls_tab"> <div id="gls_current"></div> </div> </div> var mainGridPanelWidth = (Ext.IsIE)?'':'width: \'...

MS pie chart with 2 querys

i have two queries which give two different values One query gives the freespace select sum(freesize) as freespace from freespace the next query gives totalspace select sum(NumRegions) as totalspace from fileidtofilename then usedspace= totalspace- freespace Now i want to display the usedspace region and freespace region in the p...

rmagick or other library for producing 3D pie chart

I am interested in making a 3D pie chart dynamically on my page depending on values pulled from my database. The chart would only be updated every few days, so I don't mind a process intensive task as I could cache the image. 2D charts and pie graph libraries seem to be everywhere, but are there any libraries (server side image magic, or...

How to apply seriesStyles to piechart in ExtJs dynamically

Hello everybody, Am trying to set 'seriesstyles' to piechart dynamically from the JSON data. When the 'oneWeekStore' loads the JSON data, I wish to iterate through the 'color' of each record and setSeriesStyles dynamically to PieChart. Below is the snippet. var oneWeekStore = new Ext.data.JsonStore({ id:'jsonStore', fi...

How to Fill the gradient color in JFreeChart PieChart3D?

I want to fill the PieChart3D with a gradient color, I am using JFreeChart for drawing the graph. but it is not filling with gradient color rather than it is filled with a solid color.. Here is the code I am using for changing the color. public void setColor(PiePlot3D plot, PieDataset dataset) { GradientPaint gp0 = new GradientP...

WPF Toolkit Pie Chart Style Colors

Hello, i`d like to set colors in codebehind for every Pie Slice in my PieChart. Anyone knows how to do this? Now it gets the colors from the styles xaml, but i need to assign the colors for each value (pie slice) by myself from codebehind. ...

ASP:Chart control - databind pie chart from datatable

Hi folks, I've got a datatable with two columns "Status" (string) and "Total" (integer). Status Total Success 34 Missing 2 Failed 10 I want to databind this into a pie chart with each Status per slice but I'm not sure what method of data binder is required? Thanks, Jonesy ...