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.utils; // w w w . ja v a 2s. c o m /** * Class that encapsulates information of a value that has been * selected/highlighted and its DataSet index. The SelInfo objects give * information about the value at the selected index and the DataSet it belongs * to. Needed only for highlighting onTouch(). * * @author Philipp Jahoda */ public class SelInfo { public float val; public int dataSetIndex; public SelInfo(float val, int dataSetIndex) { this.val = val; this.dataSetIndex = dataSetIndex; } }