/charts

Simple Android compose charts.

Primary LanguageKotlin

Compose Charts

This is an exploratory playground library to figure out how to Draw and animate using Android Jetpack Compose library. Currently this is using `0.1.0-dev13` library.

---

How it looks:



How to use Pie Chart:


  1. Wrap your layout
@Composable
fun MyChartParent() {
     PieChart(pieChartData = PieChartData(
         slices = listOf(Slice(...), Slice(...),....),
         sliceThickness = 25f
     ))
}