We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have added NAN value for 26sep but it is not loading lines between 27th and 28th sep. Please check attach video
Code:
selectedDomains.forEachIndexed { domainIndex, _ -> entity3 = arrayListOf() chartList.forEachIndexed { index, it -> val domain = it.graphDBDatas.filter { data -> data.childDomainId == selectedDomains[domainIndex].id } if (domain.isNotEmpty()) { if (domain[0].score != null) { entity3.add( Entry( index.toFloat(), domain[0].score?.toFloat() ?: 0f ) ) } else { entity3.add(Entry(index.toFloat(), Float.NaN)) } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have added NAN value for 26sep but it is not loading lines between 27th and 28th sep.
Please check attach video
Code:
The text was updated successfully, but these errors were encountered: