plot « Graphics « Java Swing Q&A





1. Jfreechart XYPlot, how can i draw a legend into the Plot-Area?    stackoverflow.com

i'm drawing several charts with XY-Plots in my application. I have no problem displaying a legend under (or on top, left or right of) the plot. But to save space i want to draw ...

2. help in plotting points    coderanch.com

Hi, could somebody help me in ploting some values in a in a specifies axis. Suppose I have file cond 1 val1 val2 val2 val3 1 2 5 6 7 2 5 6 -1 1 3 4 5 5 7 4 1 1 6 10 Now I have to plot the conditions according to the values Like plot cond1 with values ...

3. Plotting points    coderanch.com

Hi, using a Graphics object, or Graphics2D object, I want to know how to plot a point(pixel) at (x,y). Currently, I'm using g.drawLine(x,y,x,y), but the images I'm creating contain 1000's or hundreds of 1000's of points, and I feel using a line to plot a point is wasteful regarding performance. Is there a simpler way? Like g.plot(x,y), I checked API and ...

4. plot some values as a circle with different colors    java-forums.org

well,i have a list of values.these values basically appear as points on a circle .the plotting part is quite easy but my problem is that i need to make these points appear in different colors according to their value. for example,i have values 12,14,18,12.5,20,7,5.6,7.9,10,11.5 these values appear as points on the color but depending on the value. i.e points whose values ...