Search found 26 matches

by patronas
Wed Oct 02, 2019 12:46 pm
Forum: Java
Topic: java.lang.NullPointerException in com.steema.teechart.drawing.Graphics3D.pointInEllipse(Graphics3D.java:783) ~
Replies: 3
Views: 28878

Re: java.lang.NullPointerException in com.steema.teechart.drawing.Graphics3D.pointInEllipse(Graphics3D.java:783) ~

Somehow the click event was triggered. But I have no idea how. We created the following patch solving the problem for us. --- SWT/com/steema/teechart/drawing/Graphics3D.java 2019-09-27 10:06:20.114953492 +0200 +++ SWT/com/steema/teechart/drawing/Graphics3D.java 2019-09-27 10:05:04.751053446 +0200 @@...
by patronas
Thu Sep 26, 2019 9:24 am
Forum: Java
Topic: java.lang.NullPointerException in com.steema.teechart.drawing.Graphics3D.pointInEllipse(Graphics3D.java:783) ~
Replies: 3
Views: 28878

java.lang.NullPointerException in com.steema.teechart.drawing.Graphics3D.pointInEllipse(Graphics3D.java:783) ~

We are getting NPEs. Sadly we are not able to reproduce them. Maybe someone with more insight can have a look at this? Here the Full message: java.lang.NullPointerException at com.steema.teechart.drawing.Graphics3D.pointInEllipse(Graphics3D.java:783) at com.steema.teechart.styles.Circular.clicked(Ci...
by patronas
Tue Jun 18, 2019 8:45 am
Forum: Java
Topic: Smoothing mode
Replies: 11
Views: 50851

Re: Smoothing mode

Hello and thank you for the test version. It does in fact look much better. There still seem to be some minor issues with the smoothing, but the overall look is much better.
Charts-Smoothing-improved.png
Charts-Smoothing-improved.png (5.02 KiB) Viewed 49594 times
by patronas
Thu Jun 06, 2019 7:16 am
Forum: Java
Topic: Smoothing mode
Replies: 11
Views: 50851

Re: Smoothing mode

It's been quite some time. Is there any news on when we can expect the solutions?
by patronas
Tue May 28, 2019 8:50 am
Forum: Java
Topic: Shape disappears near left border
Replies: 5
Views: 34180

Re: Shape disappears near left border

Can you provide a minimal working example illustrating the problem. This usually helps in analysing the problem.
by patronas
Mon May 13, 2019 7:29 am
Forum: Java
Topic: Smoothing mode
Replies: 11
Views: 50851

Re: Smoothing mode

Ohh great. that looks much better. looking forward to the next release :-)
by patronas
Tue Apr 30, 2019 12:57 pm
Forum: Java
Topic: Smoothing mode
Replies: 11
Views: 50851

Re: Smoothing mode

Any updates? Can we expect a solution soon?
by patronas
Mon Apr 15, 2019 9:40 am
Forum: Java
Topic: ToolTip display bug?
Replies: 4
Views: 32559

Re: ToolTip display bug?

When can we be expecting the maintenance release? Maybe even with a solution to viewtopic.php?f=10&t=17139

Thanks
by patronas
Mon Apr 01, 2019 11:45 am
Forum: Java
Topic: ToolTip display bug?
Replies: 4
Views: 32559

Re: ToolTip display bug?

Thanks :-)
by patronas
Tue Mar 26, 2019 1:41 pm
Forum: Java
Topic: ToolTip display bug?
Replies: 4
Views: 32559

ToolTip display bug?

Hi, using the following configuration final MarksTip toolTips = new MarksTip(); toolTips.setSeries(series); toolTips.setChart(chart.getChart()); toolTips.setStyle(MarksStyle.LEGEND); toolTips.setHideDelay(0); I get the following tooltip TooltipEncoding.png As you can see the encoding is somehow wron...
by patronas
Tue Mar 26, 2019 8:50 am
Forum: Java
Topic: Legent text formatting
Replies: 6
Views: 35691

Re: Legent text formatting

Thanks.
by patronas
Tue Mar 26, 2019 7:52 am
Forum: Java
Topic: Legent text formatting
Replies: 6
Views: 35691

Re: Legent text formatting

Does this maintain the column widths set in the legend configuration?
by patronas
Mon Mar 25, 2019 12:44 pm
Forum: Java
Topic: Legent text formatting
Replies: 6
Views: 35691

Re: Legent text formatting

We have written a small patch that adds the possibility of providing a custom formatting function for the legends value string: --- SWT/com/steema/teechart/styles/Series.java +++ SWT/com/steema/teechart/styles/Series.java @@ -1535,13 +1535,25 @@ public class Series extends TeeBase implements ISeries...
by patronas
Thu Mar 21, 2019 7:55 am
Forum: Java
Topic: Legent text formatting
Replies: 6
Views: 35691

Re: Legent text formatting

Hi. As far as i can see, in the Series class there is the valueToString method responsible for formatting the value. Would it be possible to change this such that it is possible to specify a lambda method to the series which takes care of the formatting? This would improve flexiblitiy when it comes ...
by patronas
Wed Mar 20, 2019 2:02 pm
Forum: Java
Topic: Legent text formatting
Replies: 6
Views: 35691

Legent text formatting

I have cretaed my legend as I described in post : https://www.steema.com/support/viewtopic.php?f=10&t=17135 I now have the issue that I need to format the numeric value from the legend. e.G I have the data: Bob 100 Bob 50 then i want to format the legend to display 150 € Bob any idea how i can do th...