-
Notifications
You must be signed in to change notification settings - Fork 42
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
Line graph doesnot fill maxwidth of the screen #117
Comments
@Felix-Kariuki Did you notice that the chart shrinks in size also, when you add more and more data points? |
Thanks for help us to know what is the problems that face you. We will make sure to solve this in the next versions |
@KneeNinetySeven That's the same issue I experienced |
@KneeNinetySeven @Felix-Kariuki @AndrewAboalhana |
this worked as charm brother but there is one more problem when we add more then 6 items data in line chart here is code val testLineParameters: List = listOf( Box(Modifier) { |
What
The line graph seems to occupy only a 3rd of the screen when i have a line with 10 items
How to replicate
Use these sample values to draw the line graph
val previewLineChart = listOf( 0.0, 300.0, 0.0, 117.0, 120.0, 19.0, 21.0, 4.0, 4510.0, 0.0, )
You'll notice that the line chart only occupies a 3rd of the screen yet if i use a list of points with lesser values the chart seems to occupy full width. example using this values
val previewLineChart = listOf(0.0, 300.0, 0.0, 117.0, 120.0,19.0)
The text was updated successfully, but these errors were encountered: