An Android API for creating dynamic and static charts.
Questions tagged [androidplot]
352 questions
0
votes
1 answer
Error compiling androidplot
I'm trying to use the android plot library, just copy the code of the sample page
http://androidplot.com/docs/quickstart/
I add the librery source and just change the following line in the example code because it was giving me an error:
// Create…

user2720241
- 41
- 1
- 7
0
votes
1 answer
Values on top of Bar Charts on AndroidPlot
I'm trying to write one example of Android application using the AndroidPlot library.
That library is excellent, but I couldn't found anything about how to display the value data on the top of each bar in the Bar Chart.

andre.curvello
- 16
- 1
0
votes
1 answer
0
votes
1 answer
How to remove left Range panel in androidplot?
I'm trying to get the graph view horizontally centered inside my layout, but I'm not able to "remove" that left bar, which is actually where the "range" settings are.
This is a screenshot from the official demo app, showing this undesired effect…

Henrique
- 4,921
- 6
- 36
- 61
0
votes
2 answers
Is it better to plot android Graph using JAR or OpenGL
I am trying to plot a real time graph with close to 2000 points,plotting one point at a time.This works well with both JARs(achartengine,android plot) and OPENGL, but graph plotting is very slow.Please suggest techniques to increase the plotting…

swetha kini
- 564
- 1
- 6
- 23
0
votes
1 answer
AndroidPlot: Adding and Removing XYSeries
I'm having a problem with this implementation:
if(blueActive) {
blueFormat = new LineAndPointFormatter(Color.rgb(0,0,255), null, null);
blue = new SimpleXYSeries(xArray,yArray, selectedDate);
Log.e(TAG ,…

whyoz
- 5,168
- 47
- 53
0
votes
1 answer
AndroidPlot: LineAndPointFormatter causing crash when passing in Context and colors.xml resource ID
I'm trying to avoid using rgb values, so this method:
public LineAndPointFormatter(Integer lineColor, Integer vertexColor, Integer fillColor) {
this(lineColor, vertexColor, fillColor, FillDirection.BOTTOM);
}
where I'm supposed to pass…

whyoz
- 5,168
- 47
- 53
0
votes
2 answers
how to display graph in android using MySQL database
I can't get data from MySQL database for graphics. I found an example code for create graph but I want to put x axis data and y axis data from database
My example codes are:
public class Graph extends Activity {
private XYPlot xyPlot;
…

bsahan
- 1
- 1
- 2
0
votes
4 answers
Unable to import libraries to eclipse
When I try to use libraries they all seem empty to me (when I try to import them I can only see 'empty' packages). I tried both: drag-drop libraries to \libs and importing them. I don't know what is causing this problem...
I'm trying to import…

iluvatar
- 69
- 1
- 12
0
votes
1 answer
Androidplot : '\n' does not interpret in Titlewidget
Am using AndroidPlot to plot a graph.
I wanted to display X and Y scale in title widget and position in top-right corner. I have positioned but unable to interpret new line in setTitle() string parameter. It is displaying ASCII character instead. Is…

Aswin
- 1,154
- 1
- 11
- 29
0
votes
1 answer
error in androidplot xml file
I'm implementing chart applications using Android Plot jar files examples.. It shows the application runs on the Jar file's com.androidplot.xy.XYPlot. But while i'm trying after configuring the project, it shows the error as,..
Could not find class…

MGR
- 382
- 2
- 7
- 21
0
votes
1 answer
AndroidPlot: Is it possible to plot directly to Bitmap (never draw/show on screen)?
I have had great success with AndroidPlot for drawing various plot's onto the display as well as capturing that drawing to a canvas and saving as JPG file(s). Thanks to all involved for a great utility!
I have been struggling with addressing the…

mbp
- 1
- 1
0
votes
1 answer
Load string value from text file, make an int and pass to androidplot
EDIT: SOLVED AS IM A TOTAL FOOL and didnt notice the file name was wrong between my 2 activities. Never mind, thanks to all those that helped. Still learning, just hope i can stop re-learning very old lessons!
im new to android and java and am…

andy
- 391
- 13
- 33
0
votes
1 answer
Does androidplot supporting by fragment?
I need to use AndroidPlot library in fragment, but it give me a mistake. Maybe it does not supported by fragments in android 4.x?
Maybe someone know what better to use for plotting simple chart?
09-13 16:54:19.098: E/AndroidRuntime(5114): FATAL…

Volodymyr
- 6,393
- 4
- 53
- 84
0
votes
1 answer
AndroidPlot and RectRegion
I am using Androidplot (v0.5.0) and I want segments of my plotted series to be different colours.
I think I need to use RectRegion but the region never shows.
XYSeries series = new SimpleXYSeries(timestamps, item.getValues(), ""); …

Steven
- 3,844
- 3
- 32
- 53