lecho.lib.hellocharts.util.AxisAutoValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hellocharts-library Show documentation
Show all versions of hellocharts-library Show documentation
Charting library for Android compatible with API 8+(Android 2.2).
package lecho.lib.hellocharts.util;
/**
* A simple class representing axis label values used only for auto generated axes.
*/
public class AxisAutoValues {
public float[] values = new float[]{};
public int valuesNumber;
public int decimals;
}