Search found 33 matches

by Turc
Thu Oct 14, 2010 5:53 pm
Forum: Java
Topic: Digital Signal Processing for Java
Replies: 1
Views: 5237

Digital Signal Processing for Java

Just curious when will Digital Signal Processing be released for Java?

Thank You.
by Turc
Thu Oct 14, 2010 4:09 pm
Forum: Java
Topic: Bug: dragging chart to the left isn't one to one
Replies: 6
Views: 12999

Re: Bug: dragging chart to the left isn't one to one

Go to the TeeChart.Features.jar file. Open up any chart example and select/click on the middle of the graph. Lets say that the middle of the graph x value is 50. Click on the X value 50 and drag/scroll the chart to the left. Let go of the Mouse when you come near the Y Axis. In theory, where the mou...
by Turc
Wed Oct 13, 2010 10:09 pm
Forum: Java
Topic: Print issues with graph and annotation
Replies: 10
Views: 19581

Re: Print issues with graph and annotation

Thank you for the update. Will this fix also keep any objects on the chart in sync when printed? Also, I currently add annotations to a chart. When the chart is scrolled/moved horizontally, i update the annotations positions so that they seem to move with the chart. The issue is that when i have a l...
by Turc
Mon Oct 04, 2010 2:14 pm
Forum: Java
Topic: Print issues with graph and annotation
Replies: 10
Views: 19581

Re: Print issues with graph and annotation

Is there a set date for when this bug is going to get fixed?

Or should i work around it and fix it myself just like i've done for 80% of your "features"?
by Turc
Sat Sep 11, 2010 11:37 pm
Forum: Java
Topic: Bug: dragging chart to the left isn't one to one
Replies: 6
Views: 12999

Bug: dragging chart to the left isn't one to one

When you select the graph and drag it to the RIGHT, the mouse and the chart move in sync.
But, when you select the graph and drag it to the LEFT, the mouse and the chart DO NOT move in sync.
by Turc
Mon Aug 30, 2010 7:29 pm
Forum: Java
Topic: Print issues with graph and annotation
Replies: 10
Views: 19581

Re: Print issues with graph and annotation

It also puts another copy of the chart on top of the original copy but moved a bit to the top and a little to the right.
by Turc
Mon Aug 30, 2010 6:28 pm
Forum: Java
Topic: Print issues with graph and annotation
Replies: 10
Views: 19581

Re: Print issues with graph and annotation

Here's the code that gets executed when the Print Button is pressed

Code: Select all

PreviewDialog d = new PreviewDialog(chart);
d.setModal(true);
d.setVisible(true);
by Turc
Mon Aug 30, 2010 6:25 pm
Forum: Java
Topic: Print issues with graph and annotation
Replies: 10
Views: 19581

Print issues with graph and annotation

When i try to print (using similar code to the example provided in the features), it prints, but the the annotation's position gets screwed up. Also, it sets the charts background to white, thus hiding the labels.

Any feedback on whether this is a bug, and if so, when will it be fixed?

Thanks
by Turc
Thu Aug 05, 2010 5:18 pm
Forum: Java
Topic: Moving Annotation During run Time, and writing to it
Replies: 4
Views: 8531

Re: Moving Annotation During run Time, and writing to it

Yeray,
Thanks, that works great. I also figured out how to move the Annotation. Thank you again for assisting me!
by Turc
Thu Aug 05, 2010 12:06 am
Forum: Java
Topic: Moving Annotation During run Time, and writing to it
Replies: 4
Views: 8531

Re: Moving Annotation During run Time, and writing to it

Is there something similar to the .net rectangle tools in java? That seems to do everything that i need it to do.
by Turc
Wed Aug 04, 2010 11:25 pm
Forum: Java
Topic: Moving Annotation During run Time, and writing to it
Replies: 4
Views: 8531

Moving Annotation During run Time, and writing to it

Few issues regarding the Annotation Tool. 1. How do you move an Annotation during runtime on a chart? 2. I can set the text in an Annotation during runtime, but if i write something into the annotation again, it throws multiple errors. annotation.setText(JOptionPane.showInputDialog((Annotation)e.get...
by Turc
Wed Aug 04, 2010 6:36 pm
Forum: Java
Topic: teeChart post plotting null points issue
Replies: 7
Views: 13408

Re: teeChart post plotting null points issue

Thank you for the help. added this and it worked:

.setNull(myChart.getSeries(0).getCount(), true);
by Turc
Fri Jul 30, 2010 3:22 pm
Forum: Java
Topic: teeChart post plotting null points issue
Replies: 7
Views: 13408

Re: teeChart post plotting null points issue

I don't need it to plot NULL points for when it exceeds a certain temperature - that was more for debugging purposes. What i need it for is when i hit the button "Stop", it stops. Wait a certain amount of time, then select "Start", and it starts from the current time, but it reconnects the previous ...
by Turc
Fri Jul 30, 2010 3:09 pm
Forum: Java
Topic: teeChart post plotting null points issue
Replies: 7
Views: 13408

Re: teeChart post plotting null points issue

Thank you for replying back, I tried changing all the settings and still nothing. It doesn't plot null points, but once it starts plotting valid points, it reconnects the points. here is a sample of my code: FastLine TemperatureSeries = new FastLine(temperatureStripChart.getChart().chart); Temperatu...
by Turc
Thu Jul 29, 2010 8:39 pm
Forum: .NET
Topic: Line reconnects null points
Replies: 2
Views: 4839

Re: Line reconnects null points

Also, i tried add(time, temperature, color. transparent) and when it reconnects, it recolors the points to the original color thus showing the null points as well. I also tried adding null strings, etc. and i get nothing :/