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.

Nightingale Chart

Edit pageLast modified: 05 August 2024
val month by columnOf("Jan", "Feb", "Mar", "May", "Apr")
val amount by columnOf(34.4, 25.1, 33.6, 20.0, 15.9)
val df = dataFrameOf(month, amount)

df.plot {
    pie {
        slice(amount)
        fillColor(month)
        size(amount) {
            scale = continuous(10.0..25.0)
            legend.type = LegendType.None
        }
    }
    layout {
        style(Style.Void)
    }
}
Nightingale Chart