charts

Real-time Java graph / chart library?

There was an earlier thread on Java graph or chart library, where JFreeChart was found to be quite good, but, as stated in its FAQ, it's not meant for real-time rendering. Can anyone recommend a comparable library that supports real-time rendering? Just some basic xy-rendering - for instance, getting a voltage signal from data acquisiti...

What are the best Javascript/Flash frameworks to render graphs or charts from data?

Ideally I'd like to do as little preparation data work on the server as possible. The less I have to do to prep the data from the database to make a given chart, the happier I am and the more view I can make in the time. Some of the things I'd like to chart are, for example: The distribution of a series of response times The number of...

Drawing a chart with proportional X axis in Python

Hi everyone! Is there an easy way to draw a date/value chart in Python, if the "dates" axis had non-equidistant values? For example, given these: 2009-02-01: 10 2009-02-02: 13 2009-02-07: 25 2009-03-01: 80 I'd like the chart to show that between the 2nd and 3nd value there's a longer gap than between the 1st and the 2nd. I tried a fe...

WPF chart controls

I am looking for a very simple WPF chart which should have a 2D graph and and should have pan and zoom facilities . ...

PHP wrapper for XML/SWF charts

Anyone know if there is a PHP wrapper for the latest version (5.X) of XML/SWF charts ...

asp.net sizing the non-sizable

I'm using the asp.net charting control, and liking it for the most part. However, I would like my charts to size with the panels they are contained in. I cannot set the width of the chart to 100%, I have to give them an exact size. I don't want to stretch and distort the rendered chart image. Does anyone have an example of how I might...

Setting JFreeChart / Cewolf X Axis Interval

I am trying to display some charts on a web app that has data for every minute. The problem is when I try to view an hours worth of data (default) you just see a bunch of hash marks. Is there a way to set the interval so that you it automatically sents 5 marks that display the date time (YYYY-MM-DD HH:MM:SS). Current: http://img255....

Stacked Chart using MSChart

I am attempting to create a stacked chart using the relatively new Microsoft Chart Controls. I am sure that I am missing something obvious but a bit of help will go a long way. The below code creates a chart with two columns. I'd like the columns to be stacked on top of each other. Further, I'd like the total of the two to be displayed...

How do I put a StockSeries in front of a BarSeries on a combination chart in BIRT?

Hi all, Consider the below source code where I create a combination chart with a BarSeries and a StockSeries. The StockSeries generates three identical Candle-stick Stock figures with a box from values 12 to 14 and low and high values 10 and 16. The BarSeries generate three bar figures with heights 11, 13 and 15. public class StockBar...

FLEX: Make LineChart DATATIP constrain to vertical axis.

When making a line chart, Lets say its for business sales for different depts and horizontally is days and vertically is dollars. When you hover over a line it tells a dataTip tells you the sales for that dept. on that day. I want it to show all the depts at the same time, so say you hover over day 3, I want the dataTips for all depts on...

How to add children to a LegendItem?

I'm trying to add a Label to the LegendItem objects in my chart's legend, without much success. I extended the LegendItem class, and the constructor of the class I made is below. The problem is that the Label you see me trying to add doesn't appear in the legend item. It's there (I can find it with getChildByName), but it's invisible, fo...

Programmatically access chart source data name

I have some charts I've copied over from an identical workbook, but the source data for each chart (42 charts, with 6 series in each) still contains the full filename path. The source sheet and cells are identical, so I just want to find the path string and replace it with "". However, I can't find a way to get the name of the sourcedata...

Creating a chart with tool tips in a Web Garden

I need to show a Line Chart on an ASP.NET page where each data point has a tooltip that shows its exact X and Y values. A chart for a particular dataset will probably only ever be requested once, so caching is disabled and the chart will be regenerated if it ever needs to be shown again. Restrictions: Needs to work in a web garden en...

Charts in django Web Applications

I want to Embed a chart in a Web Application developed using django. I have come across Google charts API, ReportLab, PyChart, MatPlotLib and ChartDirector I want to do it in the server side rather than send the AJAX request to Google chart APIs, as I also want to embed the chart into the PDF. Which is the best option to use, and what...

Excel pivot chart linear time-scale

I have a data set (~10000 rows) with the following form: +---------------------------+---------------+-------------+ | DateTimeCreated | Machine | ProductName | +---------------------------+---------------+-------------+ | 2009-03-03 00:00:12.217 | COMP001 | Product001 | +---------------------------+------------...

Reasonable optimized chart scaling.

I need to make a chart with an optimized y axis maximum value. The current method I have of making charts simply uses the maximum value of all the graphs, then divides it by ten, and uses that as grid lines. I didn't write it. Update Note: These graphs have been changed. As soon as I fixed the code, my dynamic graphs started working, ...

Dual Axis Graphs - Reporting Services 2005

I have a need to output a graph in reporting services 2005 with 2 Y axises. It does not appear that this is possible in RS2005 and I have no idea what options may be available to me. It sounds like RS2008 may solve this issue, but I do not believe that is in the cards for me. What other options might I have? ...

Using SSRS line charts to graph time periods on the y-axis

I am looking to to use an SSRS line chart to graph ending run times of jobs. I am using runtim on the y-axis and date on the x-axis. The graph looks like a flat line and the times do not show up on the y-axis, but integers show. I also want to put a target line at a specific time to show our SLA time. Here is example of data I am try...

Ways of representing frequency of updates as a graph?

I want to create a graph representing the frequency of updates to a site (for example, how often I have posted to my blog over the past 5 years). One obvious way to do this is to plot "number of entries posted per month" for the past 60 months, but this feels unsatisfying. Should I be looking at using something like a rolling average ins...

Designing chart drawing software

I am designing software that needs to draw several different kinds of charts--bar charts, pie charts, flow charts/graphs, charts over time. I am looking for resources related to both the programming side of the issue as well as the UI/display side. Books, online resources would all be helpful. Thanks. ...