Back to project page Thrift-box.
The source code is released under:
GNU General Public License
If you think the Android project Thrift-box listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.mikephil.charting.interfaces; //from ww w .j a v a 2 s .c o m import android.graphics.RectF; import android.view.View; /** * Interface that provides everything there is to know about the dimensions, * bounds, and range of the chart. * * @author Philipp Jahoda */ public interface ChartInterface { public float getOffsetBottom(); public float getOffsetTop(); public float getOffsetLeft(); public float getOffsetRight(); public float getDeltaX(); public float getDeltaY(); public float getYChartMin(); public float getYChartMax(); public int getWidth(); public int getHeight(); public RectF getContentRect(); public View getChartView(); }