Search found 26 matches

by Mulderone
Tue Nov 29, 2011 9:14 pm
Forum: Java
Topic: 2 YAxis (one left and one Right) in the same graph
Replies: 4
Views: 12718

Re: 2 YAxis (one left and one Right) in the same graph

Thanks for all, it works fine
by Mulderone
Mon Nov 28, 2011 4:32 pm
Forum: Java
Topic: 2 YAxis (one left and one Right) in the same graph
Replies: 4
Views: 12718

Re: 2 YAxis (one left and one Right) in the same graph

I've another question

How to change the color and the text size for all labels of the YAxis ?
by Mulderone
Mon Nov 28, 2011 4:23 pm
Forum: Java
Topic: 2 YAxis (one left and one Right) in the same graph
Replies: 4
Views: 12718

Re: 2 YAxis (one left and one Right) in the same graph

I've found the solution :

Code: Select all

series0.setVerticalAxis(VerticalAxis.LEFT);
series1.setVerticalAxis(VerticalAxis.RIGHT);
by Mulderone
Mon Nov 28, 2011 4:15 pm
Forum: Java
Topic: 2 YAxis (one left and one Right) in the same graph
Replies: 4
Views: 12718

2 YAxis (one left and one Right) in the same graph

Hi

i want to create a graph with line Series.

I want also 2 YAxis, one left for the first serie and one right for the second serie.

I try

Code: Select all

this.getAxes().getRight().setVisible(true);
only the left one is visible

How to do that , if it's possible ?

Thx for your help
by Mulderone
Mon Nov 28, 2011 3:33 pm
Forum: Java
Topic: custom tooltip
Replies: 7
Views: 16703

Re: custom tooltip

thanks for your help.

I've found a solution : a SerieMouseListener and i'm using a Toast object with a custom inner view.

I don't pop-up the toast near the point but the look&feel is ok
by Mulderone
Tue Nov 22, 2011 1:26 pm
Forum: Java
Topic: custom tooltip
Replies: 7
Views: 16703

Re: custom tooltip

Could you be more precise ? the series accept only 2 listeners, i'm using the the serieMouseListener but i 'have a nullPointer exception when i touch the graph and i can't find the nearestPoint method Could you help me ? final Series series = Series.createNewSeries(this.getChart(), Line.class, null)...
by Mulderone
Tue Nov 22, 2011 12:25 pm
Forum: Java
Topic: custom tooltip
Replies: 7
Views: 16703

Re: custom tooltip

i look at the code and test it but it's not precise when you touch the screen. It's possible to add a listener on the SeriePoint or get the nearest SeriePointer for an X,Y coordinate ? I understand that the android version share the same code as Java library but using mouse on PC is most precise, wh...
by Mulderone
Tue Nov 22, 2011 11:00 am
Forum: Java
Topic: custom tooltip
Replies: 7
Views: 16703

Re: custom tooltip

I also want to custom the display of label to add an icon to represent a level for each y value
by Mulderone
Tue Nov 22, 2011 9:40 am
Forum: Java
Topic: custom tooltip
Replies: 7
Views: 16703

custom tooltip

I'm using a line series graph with pointer.

How to create custom tooltip when i click on pointer ?

Thanks a lot for your answer.
by Mulderone
Wed Nov 16, 2011 9:29 pm
Forum: Java
Topic: [Teechart Android] Multi background color
Replies: 2
Views: 8790

Re: [Teechart Android] Multi background color

Thank you very much, it works fine
by Mulderone
Tue Nov 15, 2011 12:36 pm
Forum: Java
Topic: [Teechart Android] Multi background color
Replies: 2
Views: 8790

[Teechart Android] Multi background color

I'm using a serie line chart

I want to use horizontal markers or rectangle markers or the back walls to create sections in different colors in the back of my line chart.

How to do that ?

thanks for all