I am doing an android application where i need to implement interactive graphs.Can any one suggest good libraries to use.
I have gone through achartengine.
I need some interactive charts libraries.
Following two links will help you out :
http://android-graphview.org/
http://www.androidsnippets.com/how-to-create-a-line-chart
If you want to create custom graph like change the background color then you have create it on canvas
There are many libraries.
The simplest one is this
HoloGraphLibrary
Also
http://androidplot.com/
https://code.google.com/p/afreechart/
http://android-graphview.org/
Related
I need to reproduce this.
I've made the code for the blue rectangle so far but I can't find a way to add that white blurr around the rectangle.
Does anyone know how to do it?
It's easy in all languages except Kotlin...
You need to make use of third party libraries. Such designs patterns are called neumorphisms . These can be achieved easily using these library :
Fornewid-Neumorphism
https://github.com/fornewid/neumorphism
Synth-CRED
https://github.com/CRED-CLUB/synth-android
Thank you all for your answers.
I've finally found Jetpack Compose (don't know why I didn't see it sooner) and I will be using that going forward.
It seems to be the better way of building an app's UI in Kotlin.
How do I implement a box plot graph on Android like this? It seems to be similar to CandleStick Chart of MPAndroidChart. Is there any other good way?
The CandleStickChart is the closest match to your requirement for that library in MPAndroidChart although you could have a look at the other chart libraries here
to see if there is anything closer.
The CandleStickChart from MPAndroidChart looks like this:
CandleStickChartActivity in the example GitHub project is a good start for you to base your implementation.
If you need to customise the appearance of the chart further (e.g., to use circles instead of boxes) you will need to write a custom renderer. See this question for how to do that.
I want to use the ShowcaseView library to create a tutorial, but for one stage of the tutorial I don't want to highlight anything with the circle. Is this possible with the API?
The main way to do this is to set the target as Target.NONE, an example of which is shown in the sample.
As #maxcanna points out here, you can call showcaseView.setShowcaseIndicatorScale(0) after creating the ShowcaseView to accomplish this.
I'm looking library that allow to build bar charts with negative values like on picture below.
I tried already AndroidPlot(impossible to achieve this on version 0.6.0) and GraphView(look like impossible, actually i get same result as in AndroidPlot)
Greatly appreciate any help.
It is impossible via GraphView library but possible using AChartEngine library.
I'm using ActionBarSherlock and I want to insert a custom layout like Youtube application.
Here are the screenshots, what I want is green bordered as you understand. As far as I know Google is using native ActionBar, but I want to learn if it is possible using ActionBarSherlock and also, only if it is possible using ActionBar, how can I do this?
...
No you cannot do this with the native or ActionBarSherlock tabs. You should use one of the below great libraries. They are easy to use and you can get the above look very easily.
http://viewpagerindicator.com/
or
https://github.com/astuetz/PagerSlidingTabStrip