charts

Plots without titles/labels in R

In R is there any way to produce plots which have no title and which use the space the title would otherwise have taken up? In plot(), main, sub, xlab, and ylab all default to NULL, but this just leaves blank space where they would have been, ditto for setting them to ''. It would be nice if not including them meant that the entire plo...

Adjusting the scale in google maps API

Hi I want to show a distribution of marks for students in a class. But the problem is that I can adjust scale to the number of students. This is an example of the code i'm trying http://chart.apis.google.com/chart? chs=450x150 &cht=lc &chd=t:4,2,1,1,3 &chxt=x,y &chxr=0,0,80| 1,0,12,1 &chxt=x,y &chxl=0:|FL(0%-39%)|3rd(40%-49%)|2.2(50%-...

Pivot Chart Creation Using Access 2007 VBA

OK there are absolutely no good articles on the internet that I can find that explain or have code examples on how to create a pivot chart using VBA. I need this because I need the pivot chart to show different results depending on user selection in a form. There are some for Excel but the syntax is different for Access. I know this is a...

Suppressing "null device" output with R in batch mode

I have a number of bash scripts which invoke R scripts for plotting things. Something like: #!/bin/bash R --vanilla --slave <<RSCRIPT cat("Plotting $1 to $2\n") input <- read.table("$1") png("$2") plot(as.numeric(input[1,])) dev.off() RSCRIPT The problem is that despite --slave, the call to dev.off() prints the message null device ...

C++: Free easy way to draw graphs and charts?

I am doing a little exploring simulation and I want to show the graphs to compare the performance among the algorithms during run-time. What library comes to your mind? I highly prefer those that come small as I'd love if it's easy for my instructor to compile my code. I've checked gdchart but it seems to be too heavy. I just want a sim...

Cubic curve area charts in Flex, is it possible?

an example would be the filled cubic curve charts that pchart can create: http://pchart.sourceforge.net/ is it possible to recreate something like this in flex? ...

Is there a good charting library for iPhone?

I have a need to render and display charts (bar charts for now, but more types may be needed later) in an iPhone app I'm working on. I've done some looking around and it doesn't look like there are any really good, mature charting libraries for iPhone yet. I've also looked for something written for Cocoa on the Mac that can be adapted, b...

Vertical labels with google charts API?

Anyone know how to get x-axis labels to be vertical with google charts API? I need to fit a lot of labels in a small chart. Thanks ...

Svg charting library

Do you know if there's any SVG + js charting library out there similar to http://www.amcharts.com/ (Flash). I need to provide nice looking interactive chart functionality in a browser that does not support Flash but supports SVG. ...

Formatting of the caption of a chart

Does anyone of you know a way to format the caption of a chart in Crystal Reports? I have a number that stands for a specific year, this number is 4 digits long. I wnat the caption to be shown like: 2009 But the current way its shown is 2.009 EDIT: The years are dynamically load from the database and in the DB they are stored...

Flex: How to add horizontal axes to a chart?

I have a dynamically created chart and I need to add a horizontal and vertical axis in a script. I can't put the chart into MXML because I'm dynamically changing the chart type, deleting and creating a new chart. Therefore, the variable that I use to create the chart, an instance of chartBase, doesn't have either a horizontalAxis or vert...

New ASP.NET chart control not working on deployed website

I have deployed my website to an .net 2.0.50727 hosting, and the page with the chart control is not working. I think it may be because this .net version doesn't support the chart control or I have forgotten to upload some required assemblies. Anybody knows wich assemblies are the required? Does the chart control work with .net 2? I hav...

Winforms / GDI+ Draw curve for a chart

In my Winforms application I have a small chart. Nothing fancy just a bunch of x/y points I connect with lines. It would be nice to draw a curve instead of a lines to connect these points. But since mathematics was never my strong side I have no idea how to do that. Any kind of sample or advice would be helpful. ...

Excel chart component recommendations

I have to build an analytic dashboard with Excel, and would like to know whether there is any chart library you would recommend. The charts should be attractive and easy to use by standard users. I've tried Microcharts, and they look very promising, but I'd like to evaluate more options before reaching a decision. Thanks a lot. ...

Does the new asp:chart control need to be installed on the server or can it be used from the bin folder.

I have installed the new asp:chart control on my machine and have built an app that uses it. All is working well so far. Now I want to deploy my app in a hosted environment. If my hosting provider doesn't have the asp:chart control installed can I get my app to work by putting the .dll in the bin folder? (I guess I am asking if it has...

Charting and Data Manipulation.

Hi, Although there are some threads on here about .net charting controls, I'm starting new thread becuase I'm possibly looking for some advanced data manipulation (maybe this would fall under datamining but I'm not sure) along with charting. I've been asked to research and prototype and Key Performance Indicators (KPI) system. Basically...

Using Fusion Chart in PHP and rendering in Smarty Templating Engine

My issue is not able to render the chart in .tpl file. The following code is the example taken from Fusion chart document check for reference <?php include("../Includes/FusionCharts.php"); //Create an XML data document in a string variable $strXML = ""; $strXML .= "<graph caption='Monthly Unit Sales' xAxisName='Month' yAxi...

System.Web.UI.DataVisualization.Charting + Spline Area + Display Problems

Hello, I am trying to create a spline area chart with the ASP.NET charting controls. Unfortunately, I have been unable to make it do everything I want to do. I want the horizontal axis of the chart to always show the lower and upper bounds of the data set at an interval of 1. The lower bounds will always be 1 and the upper bounds will a...

How to display labels in each point in ZedGraph?

How can I display labels for each point plotted in a ZedGraph chart? ...

Printing ASP.NET 3.5 Chart Control

Hey Everyone, Any info out there on how to print the generated charts in say PDF format? They look fabulous on screen but the end users want to print them and file as needed. ...