YCharts icon indicating copy to clipboard operation
YCharts copied to clipboard

YCharts is a graph library for Android.

Results 51 YCharts issues
Sort by recently updated
recently updated
newest added

On the MultiLine Chart popUpLabelis behind the line. User cannot read popUpLabel. Just top line's popUpLabel can be read. ![image](https://github.com/user-attachments/assets/e551c6f1-ac0c-45b4-a1cb-398410565f48)

I want to make a bubble chart but the 0 point is made fixed, because I will match it with the sea horizon line, the plan is that behind it...

I am experiencing a crash when using co.yml:ycharts with Jetpack Compose Material and TalkBack enabled. The crash occurs due to a NoSuchMethodError on ModalBottomSheetLayout, indicating that the library may be...

As the title suggests, the `draw` functions in the mentioned classes should give access to the actual data Point coordinates, not just the canvas location coordinates. Adding a new Point...

Hello, I'm using YCharts for simple project containing a chart for temperature measurements depending on the date they were taken. I have a problem with scaling Y axis according to...

… line chart # Related Tickets Fixes [#171](https://github.com/codeandtheory/YCharts/issues/171) # Description Fixes the issue related to the first label on x-axis, which was not visible fully in LineChart. # Validation ![Screenshot_1731007918](https://github.com/user-attachments/assets/54ada3c3-6ae5-4d46-9c12-f533bbfa1528)

![image](https://github.com/user-attachments/assets/7831e66a-462e-424f-838d-7dd94b459f60)

# Description Pie Chart with labels' image was not showing on the Readme.md. With this pull request it will be fixed! # Validation Expected Results -> Pie Chart with labels'...

While using the library in dark mode, the legend and title text in the pie chart section become unreadable. The light theme displays correctly, but the dark theme does not...

The code on [the Readme](https://github.com/codeandtheory/YCharts/blob/main/README.md): ``` val pointsData: List = listOf(Point(0f, 40f), Point(1f, 90f), Point(2f, 0f), Point(3f, 60f), Point(4f, 10f)) ``` ``` val xAxisData = AxisData.Builder() .axisStepSize(100.dp) .backgroundColor(Color.Blue) .steps(pointsData.size -...