MPAndroidChart öğesinin tıklatıldığında yalnızca veri noktasının değerini (etiketini) göstermesini sağlamanın bir yolunu arıyorum. Ama bu, belgelerde bile çevrimiçi bulamadığım görünüyor.Dokunulduğunda değeri göster [MPAndroidChart]
line chart
'u kullandım ve istediğim şey yalnızca tıklatıldığında belirli nokta etiketini göstermektir. MarkerView
public class CustomMarkerView extends MarkerView {
private TextView tvContent;
public CustomMarkerView (Context context, int layoutResource) {
super(context, layoutResource);
// this markerview only displays a textview
tvContent = (TextView) findViewById(R.id.tvContent);
}
// callbacks everytime the MarkerView is redrawn, can be used to update the
// content (user-interface)
@Override
public void refreshContent(Entry e, Highlight highlight) {
tvContent.setText("" + e.getVal()); // set the entry-value as the display text
}
@Override
public int getXOffset() {
// this will center the marker-view horizontally
return -(getWidth()/2);
}
@Override
public int getYOffset() {
// this will cause the marker-view to be above the selected value
return -getHeight();
}
}
3 oluşturma - -