Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
12answers
2k views

Graph rendering using 3D acceleration

We generate graphs for huge datasets. We are talking 4096 samples per second, and 10 minutes per graph. A simple calculation makes for 4096 * 60 * 10 = 2457600 samples per linegraph. Each sample is a ...
4
votes
3answers
11k views

How to create line chart in iphone application?

I am creating a budget application in iPhone. Budget for personal incomes & expenses. Client's need is I want to see line graph ( like stock market line report ). Red line for (monthly / ...
3
votes
3answers
98 views

drawing a simple line graph in Java

In my program I want to draw a simple score line graph. I have a text file and on each line is an integer score, which I read in and want to pass as argument to my graph class. I'm having some ...
3
votes
2answers
3k views

Implementing Target lines, in SSRS column Charts

I have a column graph, that shows a trend of consumption over time, The y-axis being consumption and x-axis being time in month, I have to implement a target consumption. I implemented a target, by ...
3
votes
1answer
877 views

Gradient effect for Line Graph in iPhone

I'm trying to generate a graph with gradient/shading effect. Now I'm able to draw line graph and applied gradient effect to that graph. It is applying to whole view not to the graph. Now I'm getting ...
3
votes
2answers
692 views

Cocoa: create graphs

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

MS Chart Control Scale - Line graph show 12 months

On my X Axis, I have months. The chart shows up to 11 points, i.e. Jan - Nov of the same year, but when I add 12 points (Jan - Dec), it will do an auto label thing and change the interval for every 4 ...
1
vote
1answer
120 views

Python Reportlab Area under multiple lines graph

So I have started a project for the web utilizing Reportlab. The website needs to generate PDFs that have embedded charts. So far I've been extremely happy with Reportlab's capabilities (i've done a ...
1
vote
1answer
119 views

Which is the best Line SMoothing Algo for android

Hi I want to make smoother the line which I draw by getting the points on touch. The line is drawing but with corners I am using quad function to draw the curve but the curve sometimes have corners in ...
1
vote
3answers
469 views

Line graphs on iOS

Anyone know how to create line graphs on iOS without using Core-Plot but using inbuilt frameworks? Desperately searching for an answer.
1
vote
1answer
120 views

In Excel Charting, have one series out of four limit the data points

I want to plot on a line graph in Excel using VBA, but can't get the below to format correctly to look like an Excel worksheet. Numbers represent values for Feb through June. No values yet in months ...
1
vote
1answer
83 views

Representing “No value” in array in Google visualization

For the below array i get a smooth curve. data.addColumn('string', 'x'); data.addColumn('number', 'Cats'); data.addColumn('number', 'Blanket 1'); data.addColumn('number', 'Blanket 2'); ...
1
vote
2answers
194 views

Remove redundant points for line plot

I am trying to plot large amounts of points using some library. The points are ordered by time and their values can be considered unpredictable. My problem at the moment is that the sheer number of ...
1
vote
2answers
353 views

An efficient algorithm to compute a line digraph from a digraph

Does anyone know an efficient algorithm to compute a line digraph from a digraph? See http://en.wikipedia.org/wiki/Line_graph (The Wikipedia article mentions the digraph case near the bottom (in the ...
0
votes
1answer
25 views

Why does a short line segment appear instead of a full line graph?

My custom Canvas extends Canvas, and overrides the paint() method as below @Override public void paint(Graphics g) { Rectangle bounds = getBounds(); g.translate(0, (bounds.y + ...
0
votes
1answer
89 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
3answers
54 views

Generate Graph in Web Browser or Java? [closed]

How do I generate graph (line graph, bar graph) in front end either in web browser or in Java Swing ?
0
votes
1answer
58 views

Php generating speed graph

I have a number of data from mysql database to be populated into a graph format. The graph is speed vs time. The time will be in every minute. So far I have tried two tools one phPlot and PhpGraphLib. ...
0
votes
1answer
71 views

To clear a line in iPhone

I need to clear the current line graph and replace it with a new line graph, as and when I change the month (The createLineGraph method is called each time I change the month). What happens is that, ...
0
votes
0answers
175 views

Creating Line Graph in Crystal Report

I have one problem in creating line graph in crystal report. I am using SQL Server 2005 and Crystal Report XI. I have a table with the data as below: Event Sex Red Green Blue Yellow** ...
0
votes
0answers
313 views

Draw Line Graph using array data c#

I'm trying to draw a line graph using the data from a txt file. I've collected the data into array lists for each column of data then converted them into an integer array to plot the graph. This a ...
0
votes
4answers
893 views

How to create a dynamic line graph like Google Finance has?

I'm looking to create a dynamic zoomable line graph for a web page I'm doing. I was told to "make it like Google's one" (though by a sales guy who in turn is parroting the client, so he's aiming ...
0
votes
1answer
255 views

How to get point on the graph in iPhone Line graph

HI all, I'm working on line graph. I'm able to draw line graph perfectly. But the thing is I want the effect like shown in the below image. ...
0
votes
1answer
290 views

Fusion charts dynamic clickable

I have a scenario where in I am using fusion chart which has a multiple line chart in one fusion chart. I want to create a clickable line chart where in clicking on label that particular attribute ...
0
votes
2answers
8k views

How to display line graph using JFreeChart in jsp?

HI All: I am using the below to diplay the line graph. when i run the below code, i am getting the window but it is blank and not displaying the graph. Please help me and also tell me how to diplay ...
0
votes
2answers
1k views

Smoothing Zedgraph linegraphs without 'bumps'

When you use Zedgraph for linegraphs and set IsSmooth to true, the lines are nicely curved instead of having hard corners/angles. While this looks much better for most graphs -in my humble opinion- ...