We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31db4a7 commit ce88fa8Copy full SHA for ce88fa8
1 file changed
MPChartLib/src/main/java/com/github/mikephil/charting/charts/Chart.java
@@ -229,9 +229,11 @@ public void onAnimationUpdate(ValueAnimator animation) {
229
mInfoPaint.setTextSize(Utils.convertDpToPixel(12f));
230
231
if (mLogEnabled) {
232
- Log.i("", "Chart.init()");
233
- }
234
+ Log.i("", "Chart.init()");
+
+ // enable being detected by ScreenReader
235
+ setFocusable(true);
236
+ }}
237
238
// public void initWithDummyData() {
239
// ColorTemplate template = new ColorTemplate();
@@ -1649,4 +1651,9 @@ private void unbindDrawables(View view) {
1649
1651
public void setUnbindEnabled(boolean enabled) {
1650
1652
this.mUnbind = enabled;
1653
}
1654
1655
+ // region accessibility
1656
1657
1658
+ // endregion
1659
0 commit comments