Hi all, i would like to plot some data in a LineGraph. I do get a window displaying x/y-axes, but no data is plotted. I did some examples for the JPieChart and...
Hello Frank I notice that your x-axis goes from one to four, but your values (SERIESA) vary between ~15 and 20. I'd imagine this has something to do with it. ...
... Mark ... http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM ... ___________________________________________________________ To help you stay safe and...
Hi all, thanks again for the fast help on my first prob - hope i'm not getting on your nerves :))), but i ran into a second one: i am trying to show some data...
Hi, The histogram works with (variable) intervals, so x={1,3,7}, y={0,25,65} translates to plotting a data table like 1-3: 25 3-7: 65 thus y[0] is irrelevant....
Hi Marc, thx again for the fast reply. Somehow I do not get the point: What kind of data should the dataseries contain? My reasoning was such: the provided...
The y-values are the counts for each bin. Each bin is specified by an interval. So that y[i] contains the counts for the bin from x[i-1] to x[i]. It is not ...
Any suggestions for making a bar graph that has its labels written vertically inside or on top of the bars? I need this because the labels I have are too big...
I have been unable to find any API concerning the labeling of JLineGraph* graphs. I would like to provide labeling for each data series, and along the x and y...
I was unable to get that API to work. After remounting the source to eclipse... I tried to invoke it upon a JLineGraph object, then I tried to invoke it upon...
Here are the method implementations for JLineGraph: protected void drawXLabel(Graphics g, double x, Point p) { double scaledX; if(xScaleType == LOG_SCALE) ...
Thank you so much, I got the series labeling to work. I was still hoping that you would have a way to implement series labeling. Something that would generate...
You mean like a legend/key? ... ___________________________________________________________ Yahoo! Photos – NEW, now offering a quality print service from...
Yes, Ultimately its important that the user knows what each data series represents. Something similar to what was done with the JSci package in the IBM...
Hi, I am trying to use JSci to create line graphs which dynamically plot the last 5 seconds of data obtained from various sensors. I have created a mock-up...
Hi, Yes, there is. You need to write your own Graph2DModel which fires GraphDataEvents with isIncrementalChange=true every time a new data point becomes...
Hi Mark, Sorry to be a bother. I am sort of new at the whole swing thing so I am still trying to learn. I tried to take your advice and I modified the...
Hi - Using JLineGraph, is there a way to only draw the x-axis, but not the y-axis? It doesn't look like it, and drawAxes() in JGraph2D is declared final, so I...
Afraid not, but I can rectify that :D (btw, drawAxes is final because it isn't very friendly to override). I've added setAxisLines(boolean x,boolean y) and ...
Hi, I'm working with multi variable data sets where I am taking measurements of multiple types of molecules at the same time periods. I want to be able to plot...
Yes, most graph classes support multiple data series. ... ___________________________________________________________ To help you stay safe and secure online,...
Hi Mark, what would be the easiest way to implement a legend/key? are there any examples which can be looked at without having to write alot of Java2d code?? ...