GridHighlightConfig

@Serializable
data class GridHighlightConfig(val showGridExtensionLines: Boolean? = null, val showPositiveLineNumbers: Boolean? = null, val showNegativeLineNumbers: Boolean? = null, val showAreaNames: Boolean? = null, val showLineNames: Boolean? = null, val showTrackSizes: Boolean? = null, val gridBorderColor: RGBA? = null, val cellBorderColor: RGBA? = null, val rowLineColor: RGBA? = null, val columnLineColor: RGBA? = null, val gridBorderDash: Boolean? = null, val cellBorderDash: Boolean? = null, val rowLineDash: Boolean? = null, val columnLineDash: Boolean? = null, val rowGapColor: RGBA? = null, val rowHatchColor: RGBA? = null, val columnGapColor: RGBA? = null, val columnHatchColor: RGBA? = null, val areaBorderColor: RGBA? = null, val gridBackgroundColor: RGBA? = null)(source)

Configuration data for the highlighting of Grid elements.

Official doc

Constructors

Link copied to clipboard
constructor(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)

Properties

Link copied to clipboard
val areaBorderColor: RGBA? = null

The named grid areas border color (Default: transparent).

Link copied to clipboard
val cellBorderColor: RGBA? = null

The cell border color (default: transparent). Deprecated, please use rowLineColor and columnLineColor instead.

Link copied to clipboard
val cellBorderDash: Boolean? = null

Whether the cell border is dashed (default: false). Deprecated, please us rowLineDash and columnLineDash instead.

Link copied to clipboard
val columnGapColor: RGBA? = null

The column gap highlight fill color (default: transparent).

Link copied to clipboard
val columnHatchColor: RGBA? = null

The column gap hatching fill color (default: transparent).

Link copied to clipboard
val columnLineColor: RGBA? = null

The column line color (default: transparent).

Link copied to clipboard
val columnLineDash: Boolean? = null

Whether column lines are dashed (default: false).

Link copied to clipboard

The grid container background color (Default: transparent).

Link copied to clipboard
val gridBorderColor: RGBA? = null

The grid container border highlight color (default: transparent).

Link copied to clipboard
val gridBorderDash: Boolean? = null

Whether the grid border is dashed (default: false).

Link copied to clipboard
val rowGapColor: RGBA? = null

The row gap highlight fill color (default: transparent).

Link copied to clipboard
val rowHatchColor: RGBA? = null

The row gap hatching fill color (default: transparent).

Link copied to clipboard
val rowLineColor: RGBA? = null

The row line color (default: transparent).

Link copied to clipboard
val rowLineDash: Boolean? = null

Whether row lines are dashed (default: false).

Link copied to clipboard
val showAreaNames: Boolean? = null

Show area name labels (default: false).

Link copied to clipboard

Whether the extension lines from grid cells to the rulers should be shown (default: false).

Link copied to clipboard
val showLineNames: Boolean? = null

Show line name labels (default: false).

Link copied to clipboard

Show Negative line number labels (default: false).

Link copied to clipboard

Show Positive line number labels (default: false).

Link copied to clipboard
val showTrackSizes: Boolean? = null

Show track size labels (default: false).