barchart

Can anyone recommend a good bar chart component for Showing goal progress?

I'm about to start working on a PHP application that allows a user to track their progress on a day to day basis. I'm looking for a good graphing library, preferably PHP and or Javascript (JQuery would be good) which will allow me to name each bar on a bar graph with a date (10 Feb, 11 Feb, 12 Feb, etc.) probably on it's side or at a 45...

Empty Flot Charts?

I'm running the code below and getting an empty chart using Flot/jQuery. Ideally what I am after is a bar chart of the data. I'm looked and looked at this with no joy - does anyone have any ideas? <div id="user_breakdown_placeholder" style="width:300px;height:300px"></div> <script> $(function () { var d = [["Unassigned", ...

Removing Unused Columns from a Bar Chart

I am creating a departmental bar chart that shows time frames for a set of tasks. Some departments share tasks, others are unique. I have the chart running except that I don't want all possible tasks listed for every department. I would only like to display those tasks that the department actually did. Here is an example of the data (#...

Barchart with vertical labels in python/matplotlib

I'm using matplotlib to generate a (vertical) barchart. The problem is my labels are rather long. Is there any way to display them vertically, either in the bar or above it or below it? Note: The best answer will get a 500 bounty. ...

How can I create a bar-chart with JFreeChart, that shortens too long bars with a visible hint?

I want to create a bar-chart, but extraordinary high values should be shortened. An example is this image: I hope it is clear what I want. My question is: How can I do this with JFreeChart. If it isn't possible with JFreeChart you can possibly recommend alternative open-source Java-libraries to produce such an output. ...

Flex 3 Set Maximum and minimum X Axis value in bar chart

Hi I want to set Maximum and minimum value for X axis in bar chart in flex action script 3 file. Following line in working in MXML file but I want these code in actionscript 3. can anybody change this into Actionscript 3. thanks.. ...

Google Chart - Bar Chart Stacked Data Point labels

Hi, I've been asked to change a bar chart to stacked. http://chart.apis.google.com/chart?chbh=24,0,0&amp;chxp=2,200,600&amp;chxtc=1,10|2,25&amp;chxs=0,000000|1,000000|2,000000,12,-1,t,000000&amp;chf=bg,s,d0d0d0&amp;chxt=x,y,r&amp;chxl=0:|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|2:|Yearly%20Target|Monthly%20Target&amp;cht=bvs&amp;chd=t:389,437,2...

Reverse order of bars in a Flex BarChart

I'm trying to use a BarChart in Flex. I'd like it to order the bars according to the order of the ArrayCollection I fed it. i.e. data at index 0 should be the first bar on top. However, Flex is giving me the exact reverse order. i.e. data at index 0 is not the last bar in bottom. How could I tell the BarChart to reverse the order other...

Scale wpf Bar Chart manually

I am scanning computers and their scale can not be like 1.5,2,2.5 they should be in whole numbers like 1,2,3,4. my current code is ICollection<KeyValuePair<String, int>> data = new Dictionary<String, int>(); data.Add(new KeyValuePair<string, int>(Protocol, protocolCount)); mycolseries = new ColumnSeries ...

Google Visualization BarChart: Labels overlapping in x-axis

There's probably a simple answer to this, but I have yet to find it. Essentially, my x-axis labels are overlapping on some rendered charts, but not others. I'm at a limit of font-size, so I'd like to reduce the number of labels/intervals. Is there a way to do this? chart.draw(data, {width: 480, height: 240, axisFontSize: 10,is3D: tru...

wpf set barchart graph width programmatically C#

I have a chart and I am adding ColumnSeries and chart legend etc but how to programmatically set its bar width... ??? | |------| | | | | |set | | |this | | |width | | | | | | | | | |BarChart Graph |_______|______|_______________________________ <charting:Chart...

Allow horizontal scrolling only in the core-plot barchart?

Hi all, I am using core-plot lib to draw bar charts in my app like this My problem is that i want the enabling of grapgh movement only in horizontal direction so that I can see the records for a long period of time, But the problem is that i just wnt to keep the y axis fixed to its place, How can i do this? Waiting for help.... ...

Flex BarChart long text

In my application, I am using a BarChart to display data. However, the text in the category axis can be too long to display on the chart, so flex adjusts the font size automatically to the point that the data is either unreadable, or the text is partially visible. The length of the text varies every time new data comes in, so I can't s...

Flex TitleWindow.addChild removes original object

In my application, I have a chart that I want to display in a TitleWindow when clicked on. var win:TitleWindow = PopUpManager.createPopUp(this, TitleWindow, false) as TitleWindow; win.addChild(myChart); PopUpManager.bringToFront(win); It does indeed place the chart in the titlewindow that shows up, but it remov...

width of the bar in Jfreechart

Is there a way to adjust the width of the bars in a Barchart.I create my chart with the following code. final JFreeChart chart = ChartFactory.createBarChart("Report", // chart title "Date", // domain axis label "Number", // range axis label dataset, // data PlotOrientation....

to create barchart using jfreechart such that use different background color for a special bar

I want to create barchart using jfreechart such that an special bar's background color can set be set different from the background color of the plot. Is it possible using jfreechart or any other way? Thanks in advance, Abhinav ...

[R] add labels to lattice barchart

I would like to place the value for each bar in barchart (lattice) at the top of each bar. However, I cannot find any option with which I can achieve this. I can only find options for the axis. ...

how to show percentagevalue in stacked barchart datalabels in Flex builder

Hi In stacked barchart in DataTip we can see the y-value ,y-Percentage, total, etc. How can i show the above info in the datalabels on the stacked barchart , specifically y-percentage value? Thanx Sunit. ...

[R] plot line over last part of barplot

I have a barplot for which the second half should fit to this formula: y~a*x*exp(-b*x^2). Now I want to plot the entire barplot and display the fitted model over the last part of the barplot as it only holds for that part. However, I cannot find a way to display the line-graph only over the second half. If I just do something like subm...

Stacked Bar Chart with percentage composition inside the Bar and total above the Bar in JFreeChart

I am trying to create a Stacked Bar Chart. My requirement is I need percentage composition inside the bar and total count on top of the Bar. Please suggest solutions. My Requirement: Sample : http://www.jfree.org/jfreechart/api/javadoc/images/StackedBarRenderer3DSample.png I want percentage composition inside the bar and total compos...