An Android API for creating dynamic and static charts.
Questions tagged [androidplot]
352 questions
0
votes
1 answer
Set axis values in AndroidPlot
I am trying to modify the values of my X axis when plotting with AndroidPlot.
This is because I am trying to represent the FFT of an audio spectrum and I would like the X axis to show the different frequencies.
In the documentation is it recomended…

paviflo
- 105
- 2
- 13
0
votes
1 answer
Cannot resolve protected methods from Androidplot jar library
I have error when try to override protected methods from Androidplot 0.6.0 Core Library in Android Studio
Libs was added to /libs/ dir and to build.gradle and compiled successfully
Also was done: Sync Project with Gradle files and Invalidate Caches…

Oleksandr B
- 3,400
- 1
- 25
- 28
0
votes
1 answer
Problems getting started with Androidplot
I'm having problems getting started with Androidplot. I'm basically new to both Java and Android app development, so bear with me if this is a dumb question.
At this point, I'm just trying to have a plot shown on the layout, but when I add an…

Andrew Seaman
- 290
- 3
- 8
0
votes
1 answer
display negative x-values in AndroidPlot
I want to create a coordinate system like this:
http://xahlee.info/SpecialPlaneCurves_dir/CoordinateSystem_dir/rectangular_coord.png
I tried creating it with AndroidPlot, but I couldn't figure out how.
My main problems: I can't figure out how to…

Nils Schlüter
- 1,418
- 1
- 19
- 30
0
votes
1 answer
Androidplot plot a half empty line graph
I want to plot a line graph, which is not "autocompleted". My problem is,
I want to add XY Points over a time period. But after adding the first point, android plot draws this point in the middle and draws a line form the beginning of the graph to…

Asker
- 431
- 5
- 14
0
votes
1 answer
AndroidPlot Barchart adding Transition Animations in plots
I am using Android Plot chart Library bar rendering chart in my application. I want to apply the transition animation when charts rendered.
E.g: Bar plots are raising smoothly from 0 to the current value in the chart.
Help me to achieve this.…

Prakash M
- 651
- 3
- 13
0
votes
0 answers
AndroidPlot custom variable vertex color
I would like to plot my values with the vertex point color dependent on the value. Ex, value of 10 generates a red point on the graph, 20 does green, etc.
I imagine this could be done with a custom pointandlabelformatter, but the only methods of…

r2DoesInc
- 3,759
- 3
- 29
- 60
0
votes
1 answer
Android how to Add double values to AndroidPlot library?
Hi all am creating one activity to Android plot library, In this am adding simple string values using this loop
for (int i = 0; i < 2; i++, scale *= 5) {
series[i] = new SimpleXYSeries("S");
populateSeries(series[i], scale);
…

NagarjunaReddy
- 8,621
- 10
- 63
- 98
0
votes
1 answer
Androidplot StackedBar chart Range labels
I have 3 data series on a StackedBar Chart with AndroidPlot.
For example:
Number[] serie1 = new Number[]{1,4,2,5,3};
Number[] serie2 = new Number[]{3,2,8,2,0};
Number[] serie3 = new Number[]{7,1,12,8,2};
In my chart, I have 3 ticks. And for…

Tekno
- 193
- 1
- 1
- 11
0
votes
3 answers
androidplot setBarWidth
this is my first question in SO:
I'm using Androidplot 0.6.0 in an Android app. I'm displaying a bar chart of six months (a bar per month), at this point everything is well, the trouble is the bar's width (very thin), I would like make the bars…

Manuel Lopera
- 2,268
- 1
- 16
- 16
0
votes
1 answer
AndroidPlot: How to combine different chart types on the one plot?
How to combine line chart and bar chart on the one plot? The documentation does not mention about this functionality. Is this possible for AndroidPlot?

Andrew Gazizov
- 21
- 5
0
votes
1 answer
androidplot line not displayed
I'm expecting to see a straight line defined by 2 points on my graph but nothing shows up.
I followed the tutorial and everything worked fine, then I tried to change the series of numbers. Here is the code:
plotList is of type List and it contains 2…

Apetroaei Andrei
- 426
- 4
- 12
0
votes
1 answer
Strange line in androidplot
I'm create my androidplot bar chart but I have problem with strange line in start of domain axis. You can see it on the screen
How can I remove it? Here is my code:
layout:

AYMADA
- 889
- 3
- 17
- 37
0
votes
2 answers
Bar placing int Androidplot
I’m trying to make bar char in androidplot. In my domain axis I placed timestamp values. When I place on graph values of which timestamp differ for couple days I have huge gap between bars. You can see it on image below.
I want my bars were next to…

AYMADA
- 889
- 3
- 17
- 37
0
votes
1 answer
AndroidPlot : hide some points on the same curve
I have an application that displays values on a graph, but some of the values are "undefined" (in a numerical display, dashes are shown instead of the faulty values). I would like to know if it is possible with AndroidPlot to skip some values,…

LudoZik
- 917
- 1
- 8
- 20