|
50 | 50 | "**Key features:**\n", |
51 | 51 | "- **Rich DataFrames & Series:** Both DataFrames and Series are displayed as interactive widgets.\n", |
52 | 52 | "- **Pagination:** Navigate through large datasets page by page without overwhelming the output.\n", |
53 | | - "- **Column Sorting:** Click column headers to toggle between ascending, descending, and unsorted views.\n", |
| 53 | + "- **Column Sorting:** Click column headers to toggle between ascending, descending, and unsorted views. Use **Shift + Click** to sort by multiple columns.", |
54 | 54 | "- **Column Resizing:** Drag the dividers between column headers to adjust their width." |
55 | 55 | ] |
56 | 56 | }, |
|
489 | 489 | "id": "sorting-intro", |
490 | 490 | "metadata": {}, |
491 | 491 | "source": [ |
492 | | - "### Sorting by Single-Column\n", |
| 492 | + "### Sorting by Column(s)\n", |
493 | 493 | "You can sort the table by clicking on the headers of columns that have orderable data types (like numbers, strings, and dates). Non-orderable columns (like arrays or structs) do not have sorting controls.\n", |
494 | 494 | "\n", |
495 | | - "**Sorting indicators (▲, ▼) are always visible for sorted columns. The unsorted indicator (●) is only visible when you hover over an unsorted column header.** The sorting control cycles through three states:\n", |
| 495 | + "#### Single-Column Sorting\n", |
| 496 | + "The sorting control cycles through three states:\n", |
496 | 497 | "- **Unsorted (no indicator by default, ● on hover):** The default state. Click the header to sort in ascending order.\n", |
497 | 498 | "- **Ascending (▲):** The data is sorted from smallest to largest. Click again to sort in descending order.\n", |
498 | | - "- **Descending (▼):** The data is sorted from largest to smallest. Click again to return to the unsorted state." |
| 499 | + "- **Descending (▼):** The data is sorted from largest to smallest. Click again to return to the unsorted state.\n", |
| 500 | + "\n", |
| 501 | + "#### Multi-Column Sorting\n", |
| 502 | + "You can sort by multiple columns to further refine your view:\n", |
| 503 | + "- **Shift + Click:** Hold the `Shift` key while clicking additional column headers to add them to the sort order. \n", |
| 504 | + "- Each column in a multi-sort also cycles through the three states (Ascending, Descending, Unsorted).\n", |
| 505 | + "- **Indicator visibility:** Sorting indicators (▲, ▼) are always visible for all columns currently included in the sort. The unsorted indicator (●) is only visible when you hover over an unsorted column header." |
499 | 506 | ] |
500 | 507 | }, |
501 | 508 | { |
|
0 commit comments