kandy
 
0.8.0
Because kandy 0.8.0 is still in development, this documentation may not be entirely accurate and is subject to change.

Pie Settings

Edit pageLast modified: 05 August 2024
val language by columnOf("Kotlin", "Java", "C++", "JavaScript", "C#", "Other")
val users by columnOf(563, 481, 202, 406, 150, 312)
val usersLanguages = dataFrameOf(language, users)

usersLanguages.plot {
    pie {
        slice(users)
        fillColor(language) {
            scale = categorical(
                "Kotlin" to Color.hex("#1E88E5"),
                "Java" to Color.hex("#D32F2F"),
                "C++" to Color.hex("#7B1FA2"),
                "JavaScript" to Color.hex("#FBC02D"),
                "C#" to Color.hex("#388E3C"),
                "Other" to Color.hex("#757575")
            )
        }
        size = 33.0
        hole = 0.8
        alpha = 0.8
    }
    layout.style(Style.Void)
}
Pie Settings