data class GridLineOptions
Chart grid line options.
(js)
<init> |
Chart grid line options. GridLineOptions(display: Boolean = true, color: Color? = null, borderDash: List<Int>? = null, borderDashOffset: Int = 0, lineWidth: Int = 1, drawBorder: Boolean = true, drawOnChartArea: Boolean = true, drawTicks: Boolean = true, tickMarkLength: Int = 10, zeroLineWidth: Int = 1, zeroLineColor: Color? = null, zeroLineBorderDash: List<Int>? = null, zeroLineBorderDashOffset: Int = 0, offsetGridLines: Boolean = false, circular: Boolean? = null, z: Number? = null) |
(js)
borderDash |
val borderDash: List<Int>? |
(js)
borderDashOffset |
val borderDashOffset: Int |
(js)
circular |
val circular: Boolean? |
(js)
color |
val color: Color? |
(js)
display |
val display: Boolean |
(js)
drawBorder |
val drawBorder: Boolean |
(js)
drawOnChartArea |
val drawOnChartArea: Boolean |
(js)
drawTicks |
val drawTicks: Boolean |
(js)
lineWidth |
val lineWidth: Int |
(js)
offsetGridLines |
val offsetGridLines: Boolean |
(js)
tickMarkLength |
val tickMarkLength: Int |
(js)
z |
val z: Number? |
(js)
zeroLineBorderDash |
val zeroLineBorderDash: List<Int>? |
(js)
zeroLineBorderDashOffset |
val zeroLineBorderDashOffset: Int |
(js)
zeroLineColor |
val zeroLineColor: Color? |
(js)
zeroLineWidth |
val zeroLineWidth: Int |
(js)
toJs |
An extension function to convert configuration class to JS object. fun GridLineOptions.toJs(): dynamic |