About mts problem, I have the same problem.
Do you have a date to release this fix?
Search found 10 matches
- Wed May 29, 2013 9:05 pm
- Forum: Java
- Topic: Changing the value color on linear gauge
- Replies: 4
- Views: 15075
- Wed May 29, 2013 8:59 pm
- Forum: Java
- Topic: Mark Label is missing when there is a single bar
- Replies: 8
- Views: 23925
Re: Mark Label is missing when there is a single bar
Hello,
Do you have a date to release this fix?
Do you have a date to release this fix?
- Wed Jul 25, 2012 3:45 pm
- Forum: Java
- Topic: Mark Label is missing when there is a single bar
- Replies: 8
- Views: 23925
Re: Mark Label is missing when there is a single bar
I have the same problem, but I am not using MultiBars. public NewJFrame() { try { initComponents(); setSize(new Dimension(500, 500)); Bar b = new Bar(); b.getMarks().setVisible(true); t.getChart().addSeries(b); b.add(1, 1, "a"); jPanel1.add(t,BorderLayout.CENTER); } catch (Exception ex) { Logger.get...
- Mon Oct 31, 2011 6:18 pm
- Forum: Java
- Topic: Zero values in Bar3D
- Replies: 2
- Views: 10325
Re: Zero values in Bar3D
Hello Yeray,
Thank you so much . Meanwhile I will use the value 0.001
Thank you so much . Meanwhile I will use the value 0.001
- Thu Oct 27, 2011 6:16 pm
- Forum: Java
- Topic: Zero values in Bar3D
- Replies: 2
- Views: 10325
Zero values in Bar3D
I need to show 0 value in a Bar3D. I have the code below. What should I change? Bar b = new Bar(); b.getMarks().setVisible(false); getChart().addSeries(b); b.add(1, 11, "a"); b.add(3, 12, "b"); b.add(2, 13, "c"); b.add(4, 14, "d"); b = new Bar(); getChart().addSeries(b); b.getMarks().setVisible(fals...
- Tue Sep 13, 2011 4:19 pm
- Forum: Java
- Topic: Scroll arrow locked
- Replies: 6
- Views: 16751
Re: Scroll arrow locked
Hi Narcis,
It is something similar to what you did have to do.
I will make the necessary changes, thanks for the tips.
It is something similar to what you did have to do.
I will make the necessary changes, thanks for the tips.
- Mon Sep 12, 2011 7:37 pm
- Forum: Java
- Topic: Scroll arrow locked
- Replies: 6
- Views: 16751
Re: Scroll arrow locked
I translate from Delphi to Java, but it did not work as I wanted, so I asked here.
In java it does not block the scroll when the series ends.
It would be a problem? Or am I doing wrong?
In java it does not block the scroll when the series ends.
It would be a problem? Or am I doing wrong?
- Thu Sep 08, 2011 11:32 am
- Forum: Java
- Topic: Scroll arrow locked
- Replies: 6
- Views: 16751
Re: Scroll arrow locked
Hi Yeray,
I'm doing in Java.
I want to lock the scroll when it came to the limits of the series.
I'm doing in Java.
I want to lock the scroll when it came to the limits of the series.
- Mon Sep 05, 2011 7:27 pm
- Forum: Java
- Topic: Scroll arrow locked
- Replies: 6
- Views: 16751
Scroll arrow locked
Hello, I'm trying to make the scroll arrow to go only where there is value in the series. In Delphi works with the lock, when the series finish. I read in the tutorial 08 the instructions, but I could not. I did something wrong? The following code: JFrame frame = new JFrame(); JPanel panel = new JPa...
- Fri Jul 29, 2011 8:12 pm
- Forum: Java
- Topic: Marks overlaps
- Replies: 1
- Views: 8427
Marks overlaps
I would like the markers stay in front of all lines, but this is not happening, the markers are becoming overlapped by the lines. I searched here on the forum and not found similar question. Below is the image attachment that better represents the question. Is there any way to show all the marks in ...