-
Notifications
You must be signed in to change notification settings - Fork 43
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
xAxisData not showing. #91
Comments
Unfortunately, this is an issue in our library we will fix it in the next release. |
@amnah44 could you share list of issues will be fixed in next release and expected date ? |
by reading code-base, it's obvious that you decide to stop drawing xDataAxis but I don't realize why you should do that (may be there was a bug in 'xAxisDrawing'):
where 'isFromBarChart' is always true! could you please fix it? |
@MahmoudMabrok Most of our team members are college students so we fix this issue in our vacation or free time, so I can't give you an expected date for next release but we are trying to fix all this issue here before new year. and thanks for your ask. |
@MahmoudMabrok Thanks for your question and I would like to clarify that we are making this class as a base class able to use for all schemes of our charts now and in the future and we are fixing the UI, not the code issue because every team has plans, goals, ideas and decisions. |
Details:
I use this library in an XML-based project. It works fine but xAxisData data not showing.
Example:
Code:
@composable
fun BarChartSample(xAxisData: List, testBarParameters: List) {
xAxisData.toString().logDebug("RABBI")
BarChart(
legendPosition = LegendPosition.DISAPPEAR,
chartParameters = testBarParameters,
barCornerRadius = 2.dp,
gridColor = Color.LightGray,
xAxisData = xAxisData,
isShowGrid = true,
showXAxis = true,
showYAxis = true,
animateChart = true,
showGridWithSpacer = true,
}
The text was updated successfully, but these errors were encountered: