Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xVals每个元素的值为“”时,ANR #1448

Closed
PoetKing opened this issue Feb 6, 2016 · 0 comments
Closed

xVals每个元素的值为“”时,ANR #1448

PoetKing opened this issue Feb 6, 2016 · 0 comments

Comments

@PoetKing
Copy link

PoetKing commented Feb 6, 2016

public BarData(ArrayList xVals, BarDataSet dataSet) {
super(xVals, toArrayList(dataSet));
}
使用案例:
ArrayList xVals= new ArrayList();
xVals.add("");
xVals.add("");
...
BarData barData = new BarData(xVals, dataSet);
mBarChart.setData(barData);
mBarChart.invalidate();
mBarChart.animateY(1000);

权宜之计:
xVals.add(" ");

@PhilJay PhilJay closed this as completed Feb 6, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants