Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
491 views

How to make this(refer image) type of graph in datagridview

I wish to add this type of graph in my datagridviewcontrol :- Here the graph is to plotted for 12 months and I can either input percentages or comparative values in pixels for the 12 ...
5
votes
2answers
146 views

Live graph for a C application

I have an application which logs periodically on to a host system it could be on a file or just a console. I would like to use this data to plot a statistical graph for me. I am not sure if I can use ...
4
votes
3answers
442 views

gRaphael: How to increase spacing between bars in bar graph

I have created a horizontal bar graph using gRaphael charting library. I want to increase the spacing between the bars. Is there an option to do that?
3
votes
3answers
132 views

Why do BarChart graphics exported from Mathematica have pixelated text? Is there a workaround?

I've been showing off my fancy new graph formats to colleagues, but we have discovered that graphics based on BarChart have jagged text when exported as EMF, WMF, PDF etc. Line graphs based on ...
3
votes
2answers
695 views

Cocoa: create graphs

Is there a framework out there that will allow me to create simple bar and line graphs?
2
votes
1answer
1k views

Clustered bar plot in gnuplot

I have a simple result table which I want to plot as a clustered histogram plot in gnuplot. The data set has the category of content type of a webpage and the corresponding percentage share in two ...
2
votes
8answers
669 views

Bar graphs on a website

I'm by no means a web designer, so I'd like as detailed help as you're willing to give. I'd like to make a website that that tracks some data I enter using a bar graph from 0-100%. I'd enter the ...
1
vote
3answers
66 views

Taking Screenshot of Bar Graph in iPhone

I am using core plot library to construct Bar Graph. My issue is that I want to capture whole bar graph as Image so that user can mail it to their friends. I searched and found UIImage ...
1
vote
1answer
707 views

How to interval between values of x-axis and y-axis using achartEngine

I am using aChartEngine for graphs in android everything is fine till now...Now i wanna set the time interval between the axes values like x-axis values time interval should be 1.5 so x-axis values ...
1
vote
1answer
805 views

R programming: creating a stacked bar graph, with variable colors for each stacked bar

I'm trying to create a stacked bar graph with variable coloring in each stacked bar; that is, one bar has say blue on top of red, the next one red on top of purple, etc. I also wanted to preserve the ...
1
vote
2answers
849 views

Displaying a Multidimensional Array in a Bar Graph (in JavaScript)?

Is it possible for someone to give me a few pointers on how to display a multidimensional array in the form of a bar graph? The array is multidimensional, with three elements in each part - and the ...
0
votes
2answers
26 views

bar graph with CSS, how to get it filling in from bottom to top, not top to bottom?

I have a bar graph using html and css, I am using height to show the amount the bar is filled in. Right now it works, but it works in the reverse order than what I want. When height:0% the bar is ...
0
votes
0answers
23 views

jpgraph barplot - place the ticks on the x-label in the middle of the bars

I have a jpgraph barplot and I want the ticks on the x-label to be positioned below the x-axis (I use $graph->xaxis->SetTickSide(SIDE_BOTTOM);), and I want the ticks to be placed in the middle ...
0
votes
1answer
90 views

How to draw lineGraph using CorePlot framework in iPhone?

I have downloaded Core-Plot Header 9.0and added in my new Project. I am very new to draw graphs and using Core-Plot framework. I have downloaded sample project CPTTestApp-iPhone from core-plot sample ...
0
votes
2answers
113 views

plotting 3D bar graph in matlab or excel

I need to plot a 3D bar graph in matlab or excel. I am going to use some dates in x-axis, time in y-axis and some amount on the z-axis. Each record in csv file looks like ... 18-Apr, ...
0
votes
1answer
72 views

jqplot enhancedLegendRendrer seriesToggle functionality override

I am trying to change the default functionality of enhancedLegendRendrer.js where in on clicking on the legend series that particular bar item in the graph gets visible/hidden.I want to change this ...
0
votes
1answer
121 views

flot bar chart ticks not displaying

my data: var data5 = [ { label: "my cat", data: [[1,10], [4,20], [7,30]], color: 'rgb(85, 96, 42)'}, { label: "my job", data: [[2,30], [5,20], [8,30]], color: '#42215F'} ]; my ...
0
votes
0answers
20 views

Multiple chart types with bar graph on same chart area

I have a bar chart on a chart area and now I want to add another chart type on same chart area. Is it true that line and area chart types are not compatible with bar chart on same chart area? If yes ...
0
votes
1answer
202 views

Execute JS (or another jQuery plugin) inside Colorbox?

I'm trying to create a voting/polling system and I want to make sure my idea is even possible before I dig in. I really like how the Colorbox examples look and work for a "popup" window/display, and ...
0
votes
1answer
50 views

script isn't repopulating content correctly

Going to be making a site with different bar graphs, simple 1/10-10/10 data on different rows for a horizontal graph. On the bottom I will have links to create different graph and content based on the ...
0
votes
2answers
454 views

How can I create this inline bar chart like excel spark lines in Javascript?

I have an image example here of this feature that is now available in Excel 2010's spark lines: Ideally I'd like to have a vertical line as well indicating a max/min for each row. Any resources to ...
0
votes
1answer
296 views

Map Excel worksheet column to Bar Graph color

If I have a chart like: x y 1 3 2 8 3 9 4 0 color 3 1 is it possible to create a bar graph in Excel (2007) where there are bars for X and Y and ...
0
votes
1answer
141 views

website to get source code for combo graph,bar graph and other graphs

hi all is there any web site from where i can get source code of combo graph, bar graph and other graphs.it will be good if code is in java,jsp or javascript language Thanks Yugal
0
votes
1answer
2k views

How can I draw a chart with a TimeSeries in jfreecharts that doesn't interpolate date values for me?

I'm trying to display data on a XYBarChart using JFreechart. The chart should display points in time along with a count. Thus, if the user chooses Jan 25 and March 25th as the range, the chart should ...