Skip to content

Column sizing

View as Markdown

width, minWidth, and maxWidth on table column metadata and report GridDatasetColumn values are approximate displayed-character counts. They are not CSS pixels or database length limits; Sapporta turns them into font-relative grid tracks.

Use width for a fixed column. Prefer minWidth when a column may use extra space, and add maxWidth when long text should stop growing.

  • Title or description: 4080
  • Project, person, or lookup name: 2448
  • Status, priority, or other short controlled value: 1224
  • Date: 1216
  • Labels or tags: 2440

Size for the formatted value people need to scan, not the longest value the database can store. Leave numeric and date report columns unsized when their built-in defaults are sufficient.

Table metadata:

columns: {
title: { minWidth: 64 },
assignee_id: { label: "Assignee", minWidth: 32 },
status: { minWidth: 20 },
}

Report dataset columns:

columns: [
{ id: "title", label: "Task", kind: "text", minWidth: 80 },
{ id: "project", label: "Project", kind: "text", minWidth: 40 },
{ id: "status", label: "Status", kind: "text", minWidth: 20 },
{ id: "dueDate", label: "Due date", kind: "date" },
]