Questions tagged [androidplot]

An Android API for creating dynamic and static charts.

352 questions
1
vote
0 answers

AndroidPlot Pie Chart

I am using AndroidPlot to implement a pie chart in an application, and I would like to break up the label text onto multiple lines and place it over the middle of the pie chart, similar to the effect shown in the picture below. By default the label…
SheedySheedySheedy
  • 536
  • 1
  • 6
  • 14
1
vote
2 answers

Androidplot - creating chart without XML

I need to create some PieCharts on my Activity, and quantity of charts varies. I try to create PieChart dynamically from code, and it's doesn't work. My Layout correct - Button added successfully. Can you help me? Some…
Nik
  • 21
  • 1
  • 5
1
vote
1 answer

Dynamic Plot with AndroidPlot update example

Hi I' am triing to undertsad how androidplot works and I was triing to create a dynamic plot but the example that I found in the official web site is not update and it doesn't work with the version 0.6, do you know where I can find an update…
1
vote
2 answers

Show/hide point label Androidplot

When my chart gets a lot of data the point labels overlap each other and as a result I want to give the user an option to turn them off by clicking a button but I can't find anything in the documentation on how to do this. Below is how I setup the…
Mark
  • 183
  • 4
  • 12
1
vote
1 answer

Remove a lengend from an XYPlot

Am using AndroidPlot on my project and it's just great so far. This is what i got. Now am trying to remove one of the series indicators from the legend. Actually i want to keep only the first one (the blue one) cause the others are self…
Kalem
  • 1,132
  • 12
  • 33
1
vote
0 answers

jmockit errors while compiling androidplot from source

I am getting the following errors while compiling androidplot from source. I got the source on 29 July by doing git clone https://bitbucket.org/androidplot/androidplot.git I compiled using mvn package -e > Tests in error: …
user3276567
  • 309
  • 3
  • 3
1
vote
2 answers

How can i show date & time in the X Axis (domain axis) of the graph

I have a graph in which i want to show Date-Time in the X Axis and some values in the Y Axis. I am wondering how I can show the date and time on the X Axis. The Format in which i want to show is: dd/mm/yyyy hh:mm My X Axis Data is : Number[]…
Kishan
  • 231
  • 1
  • 11
1
vote
1 answer

XY Scatter AndroidPlot

Attempting to use AndroidPlot to create an XY scatter plot, encountering a problem... whereby the plot only draws points from left to right, a scrolling chart essentially. Example... say I have the following co-ordinates, (0,1), (1,0), (0,-1),…
Strokes
  • 157
  • 7
  • 23
1
vote
1 answer

Can I show the whole vertex point on the edge of the grid?

XYPlot vertex points positioned towards the edge of the grid gets cut off and only show the half of the point inside the grid. Can I make it so the whole point is shown?
BlueCat
  • 23
  • 4
1
vote
1 answer

Is it possible to change PieRenderer programatically?

I'd like to create a pie chart, with segment labels rendered on two lines. To do that, I have to override PieRenderer.drawSegmentLabel (source on bitbucket), but I don't know, how to set my renderer class to the PieChart object. I found a…
azendh
  • 921
  • 8
  • 23
1
vote
1 answer

Remove seperator lines on Android Plot Pie Chart

I've used android plot pie chart to plot data in my application. My problem is that the separator lines in the pie chart (in image attached below). I can't seem to get rid of the black line no matter what way I have set up the chart. Here is how…
DJ-DOO
  • 4,545
  • 15
  • 58
  • 98
1
vote
2 answers

Is it possible to hide points on an Androidplot XYplot?

1) I have an Androidplot XYPlot and some values are 0 to represent "no data" on that point. Can I hide these points with value "0" from the plot? 2) If I can't hide them, can I make the graph lines going from the previous point, to the 0 value…
BlueCat
  • 23
  • 4
1
vote
1 answer

Range field in Android Plot (0.6.1.) is not showing the entire number

I create a simple xyseries with a boundary and set the mode to AUTO. The range of values I set is between 103 and 107. I am getting constant updates between these values and can I redraw the plot when it goes over size=20. The Y axis seems to only…
pundit
  • 23
  • 4
1
vote
1 answer

AndroidPlot PieChart Touch Event

I want to implement a PieChart with a SelectionWidget. Upon clicking on a segment within an AndroidPlot PieChart, I would like the selection widget label text to display info about the current selected segment. There is an example to do this for an…
1
vote
2 answers

Can't make Android Plot work in Android Studio

Before you ask, I already have the last version of Android Studio (0.5.8). This is the problem: What I did to import the library was: Copy the .jar file to the libs directory Right click the .jar and choose 'Add as Library' I already checked that…