LineOptions

data class LineOptions(val cubicInterpolationMode: InterpolationMode = InterpolationMode.DEFAULT, val tension: Double? = null, val backgroundColor: Color? = null, val borderWidth: Int? = null, val borderColor: Color? = null, val borderCapStyle: LineCap? = null, val borderDash: List<Any>? = null, val borderDashOffset: Number? = null, val borderJoinStyle: LineJoin? = null, val capBezierPoints: Boolean? = null, val fill: Boolean? = null, val stepped: Boolean? = null)

Chart line options.

Constructors

Link copied to clipboard
constructor(cubicInterpolationMode: InterpolationMode = InterpolationMode.DEFAULT, tension: Double? = null, backgroundColor: Color? = null, borderWidth: Int? = null, borderColor: Color? = null, borderCapStyle: LineCap? = null, borderDash: List<Any>? = null, borderDashOffset: Number? = null, borderJoinStyle: LineJoin? = null, capBezierPoints: Boolean? = null, fill: Boolean? = null, stepped: Boolean? = null)

Properties

Link copied to clipboard
val backgroundColor: Color? = null
Link copied to clipboard
val borderCapStyle: LineCap? = null
Link copied to clipboard
val borderColor: Color? = null
Link copied to clipboard
val borderDash: List<Any>? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val borderWidth: Int? = null
Link copied to clipboard
Link copied to clipboard
val fill: Boolean? = null
Link copied to clipboard
val stepped: Boolean? = null
Link copied to clipboard
val tension: Double? = null

Functions

Link copied to clipboard
fun LineOptions.toJs(): dynamic

An extension function to convert configuration class to JS object.