Questions tagged [androidplot]

An Android API for creating dynamic and static charts.

352 questions
2
votes
1 answer

Why doesn't Android Studio recognise androidplot attribute in my xml?

I'm using Androidplot and i have this in my xml file:
Manos
  • 149
  • 1
  • 12
2
votes
0 answers

Android Swipe Views Ethernet AndroidPlot & Overall Architecture

I'm quite new to Android development. I'm trying to write an app that communicates by Wifi using UDP to an instrument. The app plots 512 bytes of data it receives over WiFi using AndroidPlot. Transfer rate is satisfactory and communications is…
2
votes
1 answer

How to display Y-axis on the rigth side of AndroidPlot chart

I want to display chart with Y-axis on the right side using AndroidPlot library. I tried to use plot.getGraphWidget().setRangeAxisPosition(false, false, 0, s) and plot.getGraphWidget().setRangeAxisLeft(false); But it's useless. Only labels were…
2
votes
2 answers

AndroidPlot: How to make grid lines multiples of a number?

I'm using AndroidPlot 0.61. I want to make a graph with round-number gridlines, much the same way as Desmos Calculator (online), but sub-grid-lines are not necessary. I'm currently using INCREMENT_BY_VALUE with a custom function to calculate the…
nyanpasu64
  • 2,805
  • 2
  • 23
  • 31
2
votes
1 answer

How to config "PointLabelFormatter" in androidplot?

Now I'm using androidplot library and meet a problem when I want to change the point labels to transparent. It is easy to change it in java code: myFormat.setPointLabelFormatter(new PointLabelFormatter(Color.TRANSPARENT)); However, I want to set it…
Sentimental
  • 187
  • 2
  • 13
2
votes
3 answers

Androidplot: Decimal Places in Point Label

I would like to be able to set the number of decimal places for point labels. Currently, my point labels are overlapping one another like so: https://i.stack.imgur.com/1aQ4q.png Current label implementation is…
davidleejy
  • 585
  • 4
  • 9
2
votes
1 answer

I can't see elements inside my graphic AndroidPlot later of use the library Viewpagerindicator

My question is that I had from days back, my graphic of androidPlot running good, I sad all data inside of graphic in a simple layout, but, I incorporate a library "Viewpagerindicator" for to do better the relation of entry and exit of money, then,…
2
votes
2 answers

How can I increase the thickness of lines in android plot line graph?

I searched for this . but I didn't find anything useful. In the Documentation of LineAndPointFormatter class there is nothing mentioned about thickness .. Help me to solve this problem.
Anandhu
  • 312
  • 2
  • 20
2
votes
2 answers

androidplot - how can I empty SimpleXYSeries

i presume it is pretty basic, but I can't find the solution. I have something like this: public SimpleXYSeries historySeries; historySeries = new SimpleXYSeries("something"); then in background thread I add some data to the…
netpork
  • 552
  • 7
  • 20
2
votes
2 answers

Domain boundary Line going invisible in android plot graph

While performing scrolling in android plot graph, domain boundary line is going invisible. How to fix this problem?
Amrit Pal Singh
  • 7,116
  • 7
  • 40
  • 50
2
votes
1 answer

AndroidPlot - XYplot doesn't show up on graphical layout in xml

I'm fairly new in the android developing scene, however I have done a few dead simple applications to get an understanding of what the workflow would be like in the environment. I'm having a difficulty running the example program called…
user2066639
  • 241
  • 1
  • 5
  • 9
2
votes
3 answers

Android: App crashes during touch event in AndroidPlot

I'm considered a newbie in android programming, this is only my second application and i'm learning things as they come. So if there are obvious oversights, bear with me. As a part of a larger application I'm trying to implement a graph page using…
2
votes
2 answers

AndroidPlot invisible markers

I am adding real time data to an XY Plot. How can I remove the graph's dots/markers or make them invisible? I cannot find the according method in the java doc. mSimpleXYPlot.getGraphWidget().setDrawMarkersEnabled(false); is not working for…
RootRaven
  • 395
  • 5
  • 14
2
votes
1 answer

AndroidPlot: domain labels from 1 to 11

I've implemented AndroidPlot in my app and it works fine, apart from the X-axis labels, which they go from 0 to ten. I'd like to display 1 to eleven. Besides, the labels on the Y-axis do not appear. Code I'm using: import…
Luis
  • 447
  • 1
  • 7
  • 24
2
votes
0 answers

Blue screen in androidplot

I was try library androidplot to create some plots. I copy code from source but only what I see is blue screen with yellow lines. Could anyone tell me what is wrong? This is code: package com.example.actionbartest; import java.util.Arrays; import…
user1302569
  • 7,131
  • 13
  • 46
  • 66