@@ -154,7 +154,7 @@ Each column is a `DataGridColumn` with a `ColumnType` that controls both the rea
154154| ` Date ` | Formatted date | ` DrawnDatePicker ` | Calendar popup with month navigation |
155155| ` ComboBox ` | Selected value | ` DrawnComboBox ` | Searchable dropdown; set ` EditorItemsString ` |
156156| ` Picker ` | Selected value | ` DrawnScrollPicker ` | Mobile-style scroll wheel with physics snap |
157- | ` Image ` | Centred image | — (read-only) | Aspect-ratio preserving |
157+ | ` Image ` | Centered image | — (read-only) | Aspect-ratio preserving |
158158| ` ProgressBar ` | Progress bar | ` DrawnProgressBar ` | Interactive slider when editable |
159159| ` Template ` | Custom | Custom (` EditorDescriptor ` ) | Provide your own ` ICellRenderer ` |
160160
@@ -180,7 +180,7 @@ Each column is a `DataGridColumn` with a `ColumnType` that controls both the rea
180180 ColumnType =" ProgressBar" />
181181```
182182
183- ### Read-only and tab behaviour
183+ ### Read-only and tab behavior
184184
185185``` xml
186186<core : DataGridColumn Header =" Id" PropertyName =" Id"
@@ -194,7 +194,7 @@ Each column is a `DataGridColumn` with a `ColumnType` that controls both the rea
194194
195195Columns support three sizing modes controlled by the ` SizeMode ` property.
196196
197- | ` SizeMode ` | Behaviour |
197+ | ` SizeMode ` | Behavior |
198198| ---| ---|
199199| ` Fixed ` | Exact pixel width set via ` Width ` (default) |
200200| ` Auto ` | Measures header text + visible cell content; respects a ` MinWidth ` /` MaxWidth ` clamp |
@@ -384,13 +384,13 @@ var column = new DataGridColumn
384384<dg : DataGridView GridSelectionMode =" Multiple" />
385385```
386386
387- | ` SelectionMode ` | Behaviour |
387+ | ` SelectionMode ` | Behavior |
388388| ---| ---|
389389| ` Single ` | One item at a time |
390390| ` Multiple ` | Each tap toggles the item |
391391| ` Extended ` | Click + Shift/Ctrl range/toggle (desktop-style) |
392392
393- | ` SelectionUnit ` | Behaviour |
393+ | ` SelectionUnit ` | Behavior |
394394| ---| ---|
395395| ` Row ` | Whole row is selected |
396396| ` Cell ` | Individual cell is selected |
@@ -463,12 +463,12 @@ A visual overlay tracks the dragged row. The row list is updated on drop.
463463
464464### Custom style
465465
466- Every colour , font, size, and line width is configurable through the ` DataGridStyle ` object:
466+ Every color , font, size, and line width is configurable through the ` DataGridStyle ` object:
467467
468468``` csharp
469469var style = kumiko .GridStyle ;
470470
471- // Colours
471+ // Colors
472472style .BackgroundColor = new GridColor (0 . 95 f , 0 . 95 f , 0 . 97 f );
473473style .AlternateRowColor = new GridColor (0 . 90 f , 0 . 90 f , 0 . 93 f );
474474style .HeaderBackgroundColor = new GridColor (0 . 20 f , 0 . 40 f , 0 . 80 f );
@@ -628,7 +628,7 @@ See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for an in-depth contributor gui
628628| ** All Components** | Every column type, frozen columns, frozen rows, edit triggers, selection modes, drag & drop, summaries, theme toggle |
629629| ** Grouping & Filtering** | Interactive group panel, nested groups, filter popups, group summaries |
630630| ** Large Data** | 100K-row stress test with virtual scrolling performance metrics |
631- | ** Theming** | Live Light / Dark / HighContrast switching, custom colour picker |
631+ | ** Theming** | Live Light / Dark / HighContrast switching, custom color picker |
632632
633633<table >
634634 <tr >
0 commit comments