TickOptions

data class TickOptions(callback: (value: Any, index: Any, values: Any) -> dynamic?, display: Boolean, fontSize: Int, fontStyle: FontStyle?, fontColor: Color?, fontFamily: String?, reverse: Boolean, minor: dynamic, major: dynamic, lineHeight: Number?, padding: Number?, z: Number?)

Chart tick options.

Constructors

TickOptions
Link copied to clipboard
fun TickOptions(callback: (value: Any, index: Any, values: Any) -> dynamic? = null, display: Boolean = true, fontSize: Int = 12, fontStyle: FontStyle? = null, fontColor: Color? = null, fontFamily: String? = null, reverse: Boolean = false, minor: dynamic = null, major: dynamic = null, lineHeight: Number? = null, padding: Number? = null, z: Number? = null)

Properties

callback
Link copied to clipboard
val callback: (value: Any, index: Any, values: Any) -> dynamic? = null
display
Link copied to clipboard
val display: Boolean = true
fontColor
Link copied to clipboard
val fontColor: Color? = null
fontFamily
Link copied to clipboard
val fontFamily: String? = null
fontSize
Link copied to clipboard
val fontSize: Int = 12
fontStyle
Link copied to clipboard
val fontStyle: FontStyle? = null
lineHeight
Link copied to clipboard
val lineHeight: Number? = null
major
Link copied to clipboard
val major: dynamic = null
minor
Link copied to clipboard
val minor: dynamic = null
padding
Link copied to clipboard
val padding: Number? = null
reverse
Link copied to clipboard
val reverse: Boolean = false
z
Link copied to clipboard
val z: Number? = null

Extensions

toJs
Link copied to clipboard
fun TickOptions.toJs(): dynamic
An extension function to convert configuration class to JS object.