data class GridHighlightConfig
Configuration data for the highlighting of Grid elements.
<init> |
Configuration data for the highlighting of Grid elements. GridHighlightConfig(showGridExtensionLines: Boolean? = null, showPositiveLineNumbers: Boolean? = null, showNegativeLineNumbers: Boolean? = null, showAreaNames: Boolean? = null, showLineNames: Boolean? = null, showTrackSizes: Boolean? = null, gridBorderColor: RGBA? = null, cellBorderColor: RGBA? = null, rowLineColor: RGBA? = null, columnLineColor: RGBA? = null, gridBorderDash: Boolean? = null, cellBorderDash: Boolean? = null, rowLineDash: Boolean? = null, columnLineDash: Boolean? = null, rowGapColor: RGBA? = null, rowHatchColor: RGBA? = null, columnGapColor: RGBA? = null, columnHatchColor: RGBA? = null, areaBorderColor: RGBA? = null, gridBackgroundColor: RGBA? = null) |
areaBorderColor |
The named grid areas border color (Default: transparent). val areaBorderColor: RGBA? |
cellBorderColor |
The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead. val |
cellBorderDash |
Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead. val |
columnGapColor |
The column gap highlight fill color (default: transparent). val columnGapColor: RGBA? |
columnHatchColor |
The column gap hatching fill color (default: transparent). val columnHatchColor: RGBA? |
columnLineColor |
The column line color (default: transparent). val columnLineColor: RGBA? |
columnLineDash |
Whether column lines are dashed (default: false). val columnLineDash: Boolean? |
gridBackgroundColor |
The grid container background color (Default: transparent). val gridBackgroundColor: RGBA? |
gridBorderColor |
The grid container border highlight color (default: transparent). val gridBorderColor: RGBA? |
gridBorderDash |
Whether the grid border is dashed (default: false). val gridBorderDash: Boolean? |
rowGapColor |
The row gap highlight fill color (default: transparent). val rowGapColor: RGBA? |
rowHatchColor |
The row gap hatching fill color (default: transparent). val rowHatchColor: RGBA? |
rowLineColor |
The row line color (default: transparent). val rowLineColor: RGBA? |
rowLineDash |
Whether row lines are dashed (default: false). val rowLineDash: Boolean? |
showAreaNames |
Show area name labels (default: false). val showAreaNames: Boolean? |
showGridExtensionLines |
Whether the extension lines from grid cells to the rulers should be shown (default: false). val showGridExtensionLines: Boolean? |
showLineNames |
Show line name labels (default: false). val showLineNames: Boolean? |
showNegativeLineNumbers |
Show Negative line number labels (default: false). val showNegativeLineNumbers: Boolean? |
showPositiveLineNumbers |
Show Positive line number labels (default: false). val showPositiveLineNumbers: Boolean? |
showTrackSizes |
Show track size labels (default: false). val showTrackSizes: Boolean? |