data class LineOptions
Chart line options.
LineOptions(cubicInterpolationMode: InterpolationMode = InterpolationMode.DEFAULT, tension: Double = 0.2, backgroundColor: Color? = null, borderWidth: Int = 1, borderColor: Color? = null, borderCapStyle: LineCap? = null, borderDash: List<Any>? = null, borderDashOffset: Int = 0, borderJoinStyle: LineJoin? = null, capBezierPoints: Boolean = true, fill: Boolean = true, stepped: Boolean = false)
Chart line options. |
val backgroundColor: Color? |
|
val borderCapStyle: LineCap? |
|
val borderColor: Color? |
|
val borderDash: List<Any>? |
|
val borderDashOffset: Int |
|
val borderJoinStyle: LineJoin? |
|
val borderWidth: Int |
|
val capBezierPoints: Boolean |
|
val cubicInterpolationMode: InterpolationMode |
|
val fill: Boolean |
|
val stepped: Boolean |
|
val tension: Double |
fun <T> Any?.createInstance(vararg args: dynamic): T
Helper function for creating JavaScript objects from dynamic constructors. |
|
fun LineOptions.toJs(): dynamic
An extension function to convert configuration class to JS object. |