Search the web
Sign In
New User? Sign Up
jsci
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 235 - 268 of 369   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
235
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...
David Talmage
clever_shark
Offline Send Email
Jan 3, 2006
7:33 pm
236
Hi, I will look at adding a drawLabel() method to provide a hook for overriding for you. Regards, Mark ... ...
Mark Hale
mj_hale
Offline Send Email
Jan 3, 2006
7:39 pm
238
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...
DaSpifster
Offline Send Email
Jan 4, 2006
8:17 pm
239
Hi, I have now added drawXLabel() and drawYLabel() methods to the graph classes in the CVS. PS: Can anyone build the javadocs? I keep getting a ...
Mark Hale
mj_hale
Offline Send Email
Jan 4, 2006
8:45 pm
240
Check the CVS, I have just added drawXLabel() and drawYLabel() methods which can be overrided to do custom labelling. ... ...
Mark Hale
mj_hale
Offline Send Email
Jan 4, 2006
8:50 pm
241
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...
DaSpifster
Offline Send Email
Jan 5, 2006
6:35 pm
242
Here are the method implementations for JLineGraph: protected void drawXLabel(Graphics g, double x, Point p) { double scaledX; if(xScaleType == LOG_SCALE) ...
Mark Hale
mj_hale
Offline Send Email
Jan 5, 2006
10:29 pm
243
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...
DaSpifster
Offline Send Email
Jan 10, 2006
12:31 am
244
You mean like a legend/key? ... ___________________________________________________________ Yahoo! Photos – NEW, now offering a quality print service from...
Mark Hale
mj_hale
Offline Send Email
Jan 10, 2006
10:24 am
245
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...
DaSpifster
Offline Send Email
Jan 10, 2006
4:52 pm
246
OK, that has been done with a seperate component, added to the right of the graph using a layout manager. ... ...
Mark Hale
mj_hale
Offline Send Email
Jan 10, 2006
5:08 pm
248
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...
ryan_wallace57
Offline Send Email
Feb 8, 2006
8:00 am
249
Hi, Yes, there is. You need to write your own Graph2DModel which fires GraphDataEvents with isIncrementalChange=true every time a new data point becomes...
Mark Hale
mj_hale
Offline Send Email
Feb 8, 2006
11:33 am
250
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...
ryan_wallace57
Offline Send Email
Feb 9, 2006
8:52 am
251
If you are just changing the values, and not actually adding a new point to the end of the list, then you should not use incremental updates. ... ...
Mark Hale
mj_hale
Offline Send Email
Feb 9, 2006
3:25 pm
253
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...
ssinai
Offline Send Email
Feb 21, 2006
10:42 pm
254
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 ...
Mark Hale
mj_hale
Offline Send Email
Feb 22, 2006
3:21 am
255
Boy, that was quick! I'll download the new version, and try it out. Thanks. Steve ... 8p a photo http://uk.photos.yahoo.com...
ssinai
Offline Send Email
Feb 23, 2006
6:29 am
256
It works. :>...
ssinai
Offline Send Email
Feb 23, 2006
7:25 am
257
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...
rockmonaco
Offline Send Email
Feb 24, 2006
12:35 am
258
Yes, most graph classes support multiple data series. ... ___________________________________________________________ To help you stay safe and secure online,...
Mark Hale
mj_hale
Offline Send Email
Feb 24, 2006
1:20 am
260
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?? ...
rockmonaco
Offline Send Email
Mar 10, 2006
1:57 am
261
Hi, My suggestion would be to write it as a Swing component, and then add it to a layout manager along with the graph. A component something like (in ...
Mark Hale
mj_hale
Offline Send Email
Mar 10, 2006
2:17 am
262
Does anyone know the algorithm used in the running median method, i.e. Turlach vs. Stuetzle or perhaps another method. I know, I know, I suppose I could get...
kogalurshear
Offline
Mar 15, 2006
7:30 pm
263
Let me know which it is, and I'll note it in the javadoc. public static double[] runningMedian(double[] v, int width) { if(v.length<width) throw new...
Mark Hale
mj_hale
Offline Send Email
Mar 15, 2006
8:56 pm
264
Hi, I'm working on the NetBeans integration of JSci. I'm not really sure how I could do the parsing right. My source is a InputSource and I need a way to...
Torsten Knodt
tk_fhd_aui
Offline Send Email
Mar 20, 2006
6:28 pm
265
Hi, I've committed to the CVS an updated MathMLParser class for you. I have added static translateXXX(Node node) methods. You can pass them the MathMLDocument ...
Mark Hale
mj_hale
Offline Send Email
Mar 20, 2006
7:14 pm
266
Hi Mark, > I've committed to the CVS an updated MathMLParser > class for you. I have added static translateXXX(Node > node) methods. You can pass them the...
Torsten Knodt
tk_fhd_aui
Offline Send Email
Mar 20, 2006
9:31 pm
267
Hi everyone, i'm having hard times trying to get the JSci package to work. I've literally followed the instructions contained in the index.html file: 1-...
simon_982
Offline
Mar 28, 2006
10:13 am
268
Try import JSci.maths.*; ... ___________________________________________________________ To help you stay safe and secure online, we've developed the all new...
Mark Hale
mj_hale
Offline Send Email
Mar 28, 2006
1:10 pm
Messages 235 - 268 of 369   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help