commonMain.com.aay.compose.donutChart.component.PieCircle.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chart Show documentation
Show all versions of chart Show documentation
Multiplatform library for desktop and android
The newest version!
package com.aay.compose.donutChart.component
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.drawscope.DrawScope
import androidx.compose.ui.graphics.drawscope.Stroke
import androidx.compose.ui.unit.dp
internal fun DrawScope.draPieCircle(
circleColor: Color,
radiusRatioCircle: Float
) {
drawCircle(
color = circleColor,
radius = radiusRatioCircle,
style = Stroke(1.dp.toPx(), cap = StrokeCap.Round)
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy