Questions tagged [androidplot]

An Android API for creating dynamic and static charts.

352 questions
114
votes
5 answers

Android charting libraries

I am trying to find a fast and reliable charting library. After some searching, I found 4 libraries: AChartEngine [warning! official website is down and redirects to virus filled website!], WilliamChart, HelloCharts and AndroidPlot. I need some up…
user3488996
  • 1,339
  • 2
  • 10
  • 13
18
votes
4 answers

Android charts: achartengine or AndroidPlot?

I want to develop an activity to display sensor data in a plot. I've been looking around and I have found that the more interesting options for me are achartengine and AndroidPlot. I need the following requirements: Line plot with 3 or more…
jsalvador
  • 733
  • 2
  • 7
  • 18
11
votes
6 answers

How to make line with rounded (smooth) corners with AndroidPlot

I have a small problem with ploting my graph. On a picture below is what I have already done. The graph should represent the actual signal strength of available Wi-Fi network(s). It's a simple XYPlot here data are represented with SimpleXYSeries…
Simon Dorociak
  • 33,374
  • 10
  • 68
  • 106
8
votes
2 answers

how to update chart in androidplot

I made a graph from my database with androidplot, but when i reset the database with by button, the graph dosnt update, how do i update the graph without recreating the activity? public class Overview extends Activity { Number[]…
Yoshidk
  • 459
  • 1
  • 5
  • 16
6
votes
3 answers

androidPlot black border

When i execute the code bellow and add in mySimpleXYPlot.getGraphWidget().getBorderPaint().setColor(Color.WHITE); the app crashes when i launch it on my device. what i'm trying to accomplish is getting rid of the black border around the entire…
BigBug
  • 6,202
  • 23
  • 87
  • 138
6
votes
2 answers

Optimising Androidplot

Seems Androidplot (androidplot.com) website/forums are down so I'll try asking this question here. I have multi touch zoom and scrolling. Similar code to http://mlepicki.com/2012/03/androidplot-multitouch-zoom-scroll/ except that I have a bar graph…
Daniel Ryan
  • 6,976
  • 5
  • 45
  • 62
5
votes
1 answer

Dynamic graph rendering in Android

I need to draw a graph in Android which continuously gets data from the server. Based on one data item the graph needs to be displayed in various colors. The graph should keep moving from right to left like a ECG graph. Its something like continuous…
Akilan
  • 51
  • 1
  • 3
5
votes
1 answer

Only one number does not show anything in AndroidPlot

I want to display line and bar graph for question/answer session attempted by user. I am using AndroidPlot 0.6.0. Session date time is domain and Range is count of questions answered with Yes or No. Issue: List with single item does not show…
5
votes
4 answers

Androidplot - background and ranges

I'm new to that library. I'm trying to Create the following plot: Meanwhile I have the next one: My questions: NOTE: The colors doesn't matters How do I get rid of the black area (where was lables on range domain and title) and center the plot…
NickF
  • 5,637
  • 12
  • 44
  • 75
5
votes
2 answers

How do I remove all space around a chart in AndroidPlot?

I've got a minimalist chart using androidPlot in an application, and have been trying to remove extraneous visual elements. I've got everything done, except that I cannot get rid of some empty spaces around the chart itself within the view. Here's…
Captain Blammo
  • 1,897
  • 20
  • 31
5
votes
4 answers

Remove series indicator/plot legend AndroidPlot

I realise AndroidPlot has a forum but it isn't the most active so i'll chance my arm here... I'm trying to remove the series indicator or plot legend from my XY plot using the AndroidPlot library. I don't want to remove the series from the plot…
Strokes
  • 157
  • 7
  • 23
5
votes
2 answers

AndroidPlot : setting the labels on the X-axis

With the AndroidPlot website being down, I'm kind of stuck on this issue. Several similar questions have been asked, but none of them were properly answered, so here I go. I would like to know how I can relabel my X-axis. For example, if I want to…
gleerman
  • 1,793
  • 4
  • 24
  • 38
5
votes
1 answer

Android plot fixed values on x angle

Is it possible to create a chart with fixed x and y values? My x values are like 60, 90, 120, 180, 250, 375, 500, 750, 1000, but androidplot creates 9 different values based on equal distances between the values. Number[] timestamps = {60, 90, 120,…
erdomester
  • 11,789
  • 32
  • 132
  • 234
4
votes
4 answers

I want to save a .png image from AndroidPlot

I have written a code which plots a Line Graph. This graph is plotted by using Android Plot.. How can i save this graph as .png image??
user955167
  • 41
  • 1
  • 4
4
votes
1 answer

AndroidPlot: How i can change the domain data?

I use actually the AndroidPlot library to use a simple chart in my android project but I don't know how i can change the values of domain zone. More specific, this line: mySimpleXYPlot.setDomainValueFormat(new DecimalFormat("#")); In the web site…
fmgh
  • 168
  • 4
  • 14
1
2 3
23 24