Questions tagged [androidplot]

An Android API for creating dynamic and static charts.

352 questions
1
vote
1 answer

AndroidPlot get Y-Position of Line

I would like to place a TextLabelWidget above a specific line in android Plot. Is there any way to connect it directly to a line or to calculate the exact Y-position of an line. Get the correct position of a point in…
Franz
  • 358
  • 6
  • 18
1
vote
1 answer

Androidplot chart is duplicating label values x-axis & y-axis

I am using androidplot to show a graph, the labels get repeated. i searched forums and stackoverflow haven't found any solution. now i noticed, if arraysize for x-axis or y-axis is less than 10, the array values get duplicated. The screenshots show…
Amir Dora.
  • 2,831
  • 4
  • 40
  • 61
1
vote
1 answer

Add 2nd Y Axis Caption, Mark line + Add line Caption

I got the following Problem, I would like to : add a second Axis Caption to my Android Plot on the right side same Labels like right.(maybe) mark a line with a color and some text the violet line should always be in front the yellow one Is there…
Franz
  • 358
  • 6
  • 18
1
vote
1 answer

AndroidPlot remains overlapping legend

Currently, I'm overlapping my plot and it shows as link https://www.dropbox.com/s/yaktr3ew2h4s6i6/Screenshot%202018-03-08%2011.26.52.jpg?dl=0 I have read most of the threads with solutions, but my legends still remain the same position. Following…
Oli
  • 19
  • 7
1
vote
2 answers

How to center domain label below bar in a bar chart?

Currently, each bar's domain label appears below the left hand side of each bar, as pictured here: Is there a way to position labels below each bar's center ?
matdev
  • 4,115
  • 6
  • 35
  • 56
1
vote
1 answer

How to hide horizontal range lines on AndroidPlot's XYPlot?

I'd like to remove the horizontal lines from this XYPlot chart: I've already tried doing this: plot.getGraph().getGridBackgroundPaint().setColor(Color.TRANSPARENT); and added this in the XYPlot's xml…
matdev
  • 4,115
  • 6
  • 35
  • 56
1
vote
2 answers

AndroidPlot, what is the biggest value we can put into plot?

I have a program on micro-controller (uC) which send data in intmax_t format (my goal is to send 19 bytes). I'm receiving on my Android app value which is send from uC (I'm sending data through Bluetooth Low Energy module). Then I'm parsing this…
chebad
  • 919
  • 1
  • 13
  • 29
1
vote
1 answer

AndroidPlot Logarithmic Axis?

I'm currently using AndroidPlot to display a dynamic XY plot. The Python script that usually displays this data also includes the ability to graph data with a logarithmic scale using Matplotlib. Is it possible to have a logarithmic Y-axis using…
Lillian H
  • 33
  • 5
1
vote
1 answer

How to add legend for Pie chart in Android plot?

I am using Android Plot(http://androidplot.com/) library to draw a Pie chart and Pie chart draw is fine but I want legend and its customisation as shown in attached image so please guide me to do same in Android Plot library.
Hitesh Bhalala
  • 2,872
  • 23
  • 40
1
vote
3 answers

androidplot with new android-full-screen activity does not fill screen

there seem to be two definitions for full-screen android full screen = no taskbar, no status bar or buttons, simply fill the screen android plot full-screen = no legends left and right and on the bottom, simply a full-screen graph widget this…
efiLabs
  • 17
  • 5
1
vote
2 answers

ProGuard destroyed my Androidplot Layout

I'm fairly new to android development and I know decided to give ProGuard a go. After struggling with thousands of warnings, I managed to get a stable version of my app which does exactly what it's supposed to do. So the only problem left is that…
m-mb
  • 44
  • 7
1
vote
1 answer

AndroidPlot FixedSizeEditableXYSeries How to use

Im new to android and very new to android plot. Can you point me to an example that uses FixedSizeEditableXYSeries? My goal is to create a streaming plot that shows the latest sensor readings in an android app. Thanks ===================Update -…
MadProgrammer
  • 423
  • 1
  • 5
  • 17
1
vote
1 answer

Android - Issue in rendering bulk points using Android plot

I am working on a requirement to display the luma value of raw YUV image(1280 x 720) as graph. That is, I am separating the Y data and displaying it in the form of graph, in which x axis is the width and the y axis is the respective Y value. //…
Vinoth ios
  • 255
  • 1
  • 3
  • 12
1
vote
1 answer

Identify the grid of a plotted point in AndroidPlot

I have an ecg graph plotting application and the graph looks like this. What I need to know is,is it possible to know the subgrid in which the point is plotted... say in a format like (row_index,column_index) or something like this. Actually I…
1
vote
1 answer

Removing domain labels Androidplot

I'm trying to remove the domain labels in my AndroidPlot bar graph. I've tried using plot.getGraphWidget().getDomainLabelPaint.setColor(Color.TRANSPARENT); as suggested in another post, but the current AndroidPlot version does not seem to include…
Daan
  • 147
  • 15