cchart:Android库提供了一种轻松灵活的方法来在Jetpack Compose项目中创建图表 源码
撰写图表 灵活而简单的库,用于使用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 " ,
用户评论