GridHighlightConfig constructor

GridHighlightConfig({
  1. bool? showGridExtensionLines,
  2. bool? showPositiveLineNumbers,
  3. bool? showNegativeLineNumbers,
  4. bool? showAreaNames,
  5. bool? showLineNames,
  6. bool? showTrackSizes,
  7. RGBA? gridBorderColor,
  8. RGBA? rowLineColor,
  9. RGBA? columnLineColor,
  10. bool? gridBorderDash,
  11. bool? rowLineDash,
  12. bool? columnLineDash,
  13. RGBA? rowGapColor,
  14. RGBA? rowHatchColor,
  15. RGBA? columnGapColor,
  16. RGBA? columnHatchColor,
  17. RGBA? areaBorderColor,
  18. RGBA? gridBackgroundColor,
})

Implementation

GridHighlightConfig(
    {this.showGridExtensionLines,
    this.showPositiveLineNumbers,
    this.showNegativeLineNumbers,
    this.showAreaNames,
    this.showLineNames,
    this.showTrackSizes,
    this.gridBorderColor,
    this.rowLineColor,
    this.columnLineColor,
    this.gridBorderDash,
    this.rowLineDash,
    this.columnLineDash,
    this.rowGapColor,
    this.rowHatchColor,
    this.columnGapColor,
    this.columnHatchColor,
    this.areaBorderColor,
    this.gridBackgroundColor});