An Android API for creating dynamic and static charts.
Questions tagged [androidplot]
352 questions
1
vote
1 answer
Androidplot: How can I disable the X and Y axes lines while using the androidplot library?
I am developing an app, for which I am using androidplot library.
My requirement is to draw a curved graph - very similar to what is shown here
I am able to draw the smooth graph fine, but I want to remove the X and Y axes that are shown along with…

Vishal
- 39
- 6
1
vote
0 answers
Display data on graph
I am using the MpAndroidChart library to plot some data. I am using a line graph to plot the data. I want to be able to display some values at certain x indexs on top of the graph. The value I want to display is not the y values. How can I do…

amanda45
- 535
- 10
- 29
1
vote
1 answer
How to make the android plot ECG graph smooth
How can I smooth out the ecg graph in an Android plot using the AdvancedLineAndPointRenderer.Formatter. Can interpolation params be used for plot or MyFadeFormatter?

Santosh
- 11
- 2
1
vote
1 answer
Format point label on XYPlot
Method described in Androidplot tutorial
doesn't work with API version 1.1.0. There is no method setPointLabeler() in class LineAndPointRenderer.

blewman
- 15
- 3
1
vote
1 answer
How to change text colour for AndroidPlot domain and range labels?
Hi all I am just trying out a simple XY Plot with AndroidPlot. I am having trouble figuring out how to change the label colours for the domain and range. Examples online say to use:
plot.getGraphWidget().getDomainLabelPaint().setColor(my_colour);
…

teiiluj
- 241
- 3
- 10
1
vote
1 answer
Plotting of multiple graphs on a single tablet screen
I m designing an application that is suppose to plot multiple graphs for sensor data on a single tablet screen.All the graphs shall have common x-axis that displays time(1 sec to 2 mins) but y axis data for all the plots is different. I was able to…

Anjali
- 21
- 2
1
vote
0 answers
Plot values from CSV against time using Android Plot
The image is a screenshot of a portion of a csv file. Column D indicates time (from 6 am to 6 pm, measurements taken at intervals of a few seconds) while the other columns are parameters. How can I plot these parameters against time of measurement…

AR06
- 161
- 1
- 2
- 16
1
vote
1 answer
Androidplot align title of the plot at the right corner
Which property is using to set the title of the plot at the right corner. Right now the title is showing in the middle.
I need the Lead II is displayed at the right corner of the plot.

somia
- 611
- 5
- 22
1
vote
1 answer
Custom value for RangeTickLabel AndroidPlot
I am using LineChart for plotting realtime data. I need to display custom value for the Range Tick labels. For example if the Range value is 600, I need to display it as 6mv. Could someone please suggest me a solution?

somia
- 611
- 5
- 22
1
vote
2 answers
Androidplot how to hide the domain values in the plot?
I need to hide the domain values in a linegraph. Could someone please help me?
plot0.setDomainBoundaries(0, windowsize, BoundaryMode.FIXED);
plot0.addSeries(series0, formatter);
plot0.setDomainStepMode(XYStepMode.INCREMENT_BY_VAL);
…

somia
- 611
- 5
- 22
1
vote
1 answer
AndroidPlot: Can I set the size of my graph area in my XML rather than Java
I use the following code to set the size of my graph area. I have done some searching but I haven't found a way to add this in the XML.
// Set size of graph area (not plot area)
final Size sm = new Size(900, SizeLayoutType.ABSOLUTE, 900,…

puzii
- 117
- 7
1
vote
1 answer
how to draw line of best fit in android on a graph?
I am making an android application where I need to draw a graph from data entered by the user at runtime and with this data I will draw a simple line graph, but the line will be a line of best fit. The user will mostly only enter data at most 3-4…

simcity
- 57
- 1
- 7
1
vote
1 answer
Why do the samples don´t appear in my androidplot graph?
I´m modifying some data into an asynctask. I´m using androdidplot since I want to see the points I generate into the code but I´m struggling since I can´t see them.
I checked the question in this link: Access UI elements from Asynctask
and it…

eduardo92
- 1,085
- 6
- 9
1
vote
1 answer
Androidplot - different text/font size for range tick label size and origin range tick label size
I have the following xml for my plot:

puzii
- 117
- 7
1
vote
1 answer
Line break in AndroidPlot domain label
In AndroidPlot, is it possible to break the line of a domain label? I'm plotting against time and the date representation String can be quite long and would look best if it was broken into two rows.

Joakim
- 3,224
- 3
- 29
- 53