kandy 0.6.0 Help

Line with Reversed Axis

val product = ('A'..'F').toColumn("product") val rating = listOf(10, 7, 3, 5, 2, 1).toColumn("rating") val dataset = dataFrameOf(product, rating) plot(dataset) { line { x(rating) { scale = continuous(min = 0, max = 12) } y(product) { scale = continuous(transform = Transformation.REVERSE) } color = Color.RED alpha = 0.85 } }
val product = ('A'..'F') val rating = listOf(10, 7, 3, 5, 2, 1) plot { line { x(rating) { scale = continuous(min = 0, max = 12) } y(product) { scale = continuous(transform = Transformation.REVERSE) } color = Color.RED alpha = 0.85 } }
Line with Reversed Axis
Last modified: 10 May 2024