A powerful Android chart view / graph view library, supporting line- bar- pie- radar- and candlestick charts as well as scaling, dragging and animations.
private final String[] mActivities = new String[]{"Clothes", "Taxes", "Car", "Bills",
"Food", "Other", "Grandma", "Salary", "Lotery"};
@Override
public String getFormattedValue(float value) {
return mActivities[(int) value % mActivities.length];
}
});
How savvy are you on the latest dev tools and technologies? All developers who complete the survey and register enter a raffle to win $16,000 worth of prizes. Get your community involved too - promote the survey and you may win in addition $1,000 in cash!
https://developereconomics.net/?member_id=pdSrFATx&lang=en
Strictly for developers or those learning any programming language
Make your voice heard and earn cool cash and swags as a developer.
Do you know if it is possible to use different colors on a live LineDataSet depending of the values?
For example, for every values above 50, display the point in red, and for every values below 50 in green.
I managed to do it on a static LineDataSet using setColors but I am struggling with a live one. Is it possible?
Thank you so much,