Search found 8 matches
- Thu Mar 20, 2008 12:04 pm
- Forum: Java
- Topic: clickedCandle bug
- Replies: 2
- Views: 8894
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...
- Thu Mar 20, 2008 8:54 am
- Forum: Java
- Topic: clickedCandle bug
- Replies: 2
- Views: 8894
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 ...
- Fri Mar 14, 2008 10:05 am
- Forum: Java
- Topic: Zooming start on series
- Replies: 1
- Views: 6737
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
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
- Fri Mar 07, 2008 2:28 pm
- Forum: .NET
- Topic: lable axsis
- Replies: 19
- Views: 25308
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
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
- Thu Mar 06, 2008 10:28 am
- Forum: Java
- Topic: animated zoom bug
- Replies: 1
- Views: 6564
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();
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();
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...
- Wed Feb 13, 2008 4:02 pm
- Forum: Java
- Topic: DrawLine class dragging bug
- Replies: 3
- Views: 9006
- Wed Feb 13, 2008 3:58 pm
- Forum: Java
- Topic: DrawLine class dragging bug
- Replies: 3
- Views: 9006
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...