You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
I would like to get icon touch event callback and disable setting value by touch.
This is my code
arcChartView.setListener(new ArcChartView.AcvListener() {
@Override
public void onSectionsIconClicked(int i) {
String[] displayTextArray = activity.getResources().getStringArray(R.array.radar_plot_icon_label_array);
Toast.makeText(activity, displayTextArray[i], Toast.LENGTH_SHORT).show();
}
@Override
public void onStartSettingSectionValue(int i, int i1) {
}
@Override
public void onContinueSettingSectionValue(int i, int i1) {
}
@Override
public void onFinishedSettingSectionValue(int i, int i1) {
}
});
arcChartView.setAllowSettingValueByTouch(false);
However, arcChartView.setAllowSettingValueByTouch(false) will remove icon touch event callback.
The text was updated successfully, but these errors were encountered:
I would like to get icon touch event callback and disable setting value by touch.
This is my code
However, arcChartView.setAllowSettingValueByTouch(false) will remove icon touch event callback.
The text was updated successfully, but these errors were encountered: