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: DOM.RGBA? = null, val cellBorderColor: DOM.RGBA? = null, val rowLineColor: DOM.RGBA? = null, val columnLineColor: DOM.RGBA? = null, val gridBorderDash: Boolean? = null, val cellBorderDash: Boolean? = null, val rowLineDash: Boolean? = null, val columnLineDash: Boolean? = null, val rowGapColor: DOM.RGBA? = null, val rowHatchColor: DOM.RGBA? = null, val columnGapColor: DOM.RGBA? = null, val columnHatchColor: DOM.RGBA? = null, val areaBorderColor: DOM.RGBA? = null, val gridBackgroundColor: DOM.RGBA? = null)

Configuration data for the highlighting of Grid elements.

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: DOM.RGBA? = null, cellBorderColor: DOM.RGBA? = null, rowLineColor: DOM.RGBA? = null, columnLineColor: DOM.RGBA? = null, gridBorderDash: Boolean? = null, cellBorderDash: Boolean? = null, rowLineDash: Boolean? = null, columnLineDash: Boolean? = null, rowGapColor: DOM.RGBA? = null, rowHatchColor: DOM.RGBA? = null, columnGapColor: DOM.RGBA? = null, columnHatchColor: DOM.RGBA? = null, areaBorderColor: DOM.RGBA? = null, gridBackgroundColor: DOM.RGBA? = null)

Properties

Link copied to clipboard

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

Link copied to clipboard

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

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

Link copied to clipboard

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

Link copied to clipboard

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

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: DOM.RGBA? = null

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

Link copied to clipboard
val rowHatchColor: DOM.RGBA? = null

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

Link copied to clipboard
val rowLineColor: DOM.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).