Tagged Questions
3
votes
3answers
100 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 ...
1
vote
1answer
120 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 ...
0
votes
3answers
44 views
Draw a simple line graph in Swing
How can i draw a line graph in Java Swing. I'm making a program in which when user clicks on a jframe it will record its coordinate and when it click on a button named Draw Graph, it generates a line ...
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
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
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 ...