Search found 21 matches

by froggyware
Mon Feb 20, 2012 12:46 pm
Forum: Java
Topic: Custom Labels on Axis
Replies: 2
Views: 7492

Re: Custom Labels on Axis

Using your code example it works perfect.

Thanks very much!

Steven.
by froggyware
Fri Feb 17, 2012 3:02 pm
Forum: Java
Topic: Custom Labels on Axis
Replies: 2
Views: 7492

Custom Labels on Axis

Hi, I'm attempting to create a custom label on an Axis but I am unable to format the label in any way. (Using Java for Android). For example: chart.getAxes().getLeft().getLabels().getItems().clear(); for(int i = 0; i < chart.getAxes().getLeft().getMaximum()+2; i ++) { chart.getAxes().getLeft().getLa...
by froggyware
Thu Feb 02, 2012 3:16 pm
Forum: Java
Topic: Different Image for each Chart Point
Replies: 1
Views: 6478

Different Image for each Chart Point

Hi, I see there is an ImageBar to set an image for the bar chart. But is it possible to set a different image for each point? I tried to create 3 ImageBar series but then I had the case that these were stacked side-to-side. I wanted to overlay, but I just got this side-to-site resulting in squashed ...
by froggyware
Thu Feb 02, 2012 3:11 pm
Forum: Java
Topic: Create Spline Chart
Replies: 4
Views: 10242

Re: Create Spline Chart

Thanks, that did the trick!
by froggyware
Wed Feb 01, 2012 12:56 pm
Forum: Java
Topic: Create Spline Chart
Replies: 4
Views: 10242

Re: Create Spline Chart

Hi, Thanks for your Reply, I am using Java for Android. Seems the method setSmooth() does not exist. This is what I currently do, instead (I kind of assume this is the same): Line line = new Line(chart.getChart); Smoothing s = new Smoothing(); line.setFunction(s); line.setDataSourcce(line0); // line...
by froggyware
Wed Feb 01, 2012 10:19 am
Forum: Java
Topic: Create Spline Chart
Replies: 4
Views: 10242

Create Spline Chart

Hi, Is it possible in anyway to create a Spline Chart (line this http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Interpolation_example_spline.svg/600px-Interpolation_example_spline.svg.png) At the moment I find no way to create a Spline Chart. I have found a Spline Java Class in the SDK, bu...