文件名称:cchart:Android库提供了一种轻松灵活的方法来在Jetpack Compose项目中创建图表
文件大小:406KB
文件格式:ZIP
更新时间:2024-03-19 22:55:47
android charts bar-chart jetpack-compose Kotlin
撰写图表 灵活而简单的库,用于使用Jetpack Compose创建图表。 创建图表就像添加以下代码一样容易: @Composable fun BarChartScreen () { Chart ( modifier = Modifier .aspectRatio( 1f , false ), // Set the initial data bounds which should be displayed. bounds = DataBounds ( 0f , 6f , 0f , 5f ) ) { // Define the data to display. series( seriesOf( " Data I " ,