Search found 8 matches

by Marian
Thu Mar 20, 2008 12:04 pm
Forum: Java
Topic: clickedCandle bug
Replies: 2
Views: 8781

I am quite sure I am using the latest (November 14th) version. Please try to widen your candles as: candle1.setCandleWidth(40); and use this listener: private void tChartMouseListened(java.awt.event.MouseEvent e) { Candle c = (Candle)tChart.getSeries(0); int index = tChart.getSeries(0).clicked(e.get...
by Marian
Thu Mar 20, 2008 8:54 am
Forum: Java
Topic: clickedCandle bug
Replies: 2
Views: 8781

clickedCandle bug

Hi, There is a bug in 'clickedCandle' method in Candle class. It is used by 'clicked' method and also mouse events I think. The existing clickedCandle works fine for candles with open price higher than close. For the second case with close higher than open it only returns true when the point passed ...
by Marian
Fri Mar 14, 2008 10:05 am
Forum: Java
Topic: Zooming start on series
Replies: 1
Views: 6652

Zooming start on series

Hi,
is it possible to be able to start zooming using mouse on series?
I mean, in my case I have candlesticks in my chart and if I want to start zooming I have to press the mouse outside existing candlesticks, on the chart background.

Thanks,
Marian
by Marian
Fri Mar 07, 2008 2:28 pm
Forum: .NET
Topic: lable axsis
Replies: 19
Views: 24987

performance

Hi Alex,
I use Teechart Java version. My experience with it is that if you plot a bigger number of points, changing chart's background grid from dashed to solid or removing it helps speed of panning and zooming a lot.
Hope it will be of some use for you as well.
Marian
by Marian
Thu Mar 06, 2008 10:28 am
Forum: Java
Topic: animated zoom bug
Replies: 1
Views: 6484

animated zoom bug

I couldn't make the animated zoom work.
I was able to fix it by adding a new line after the line #1235 in Chart.java:

old line #1235:
invalidate(); // Repaint?

new:
invalidate(); // Repaint?
this.parent.refreshControl();
by Marian
Wed Feb 27, 2008 4:10 pm
Forum: Java
Topic: Axis bug?
Replies: 1
Views: 6461

Axis bug?

Hi, I am drawing time series into a chart. The bottom axis and its corresponding labels and grid lines behave little strange. If I insert multiple series points for a period of several days with DateTime x coordinates, the first label/grid line to be shown for each particular day seems not to be the...
by Marian
Wed Feb 13, 2008 4:02 pm
Forum: Java
Topic: DrawLine class dragging bug
Replies: 3
Views: 8916

the bug may be reproduced simply by running TeeChart.Features.jar Tools/Drawline and follow the steps I described above
by Marian
Wed Feb 13, 2008 3:58 pm
Forum: Java
Topic: DrawLine class dragging bug
Replies: 3
Views: 8916

DrawLine class dragging bug

Hi, I ran into a bug while using DrawLine class. If I draw a line, then draw a new one and start dragging the previous one the newest one disappears. I fixed the bug by changing the code in DrawLine.java, line 533: if(tmp != null) { repositionLine(tmp); } to this one: if(tmp != null && selected == n...