Skip to content

Commit 4d6b7ac

Browse files
feat: change default diagram direction from TB to LR
Left-to-right layout is more natural for pipeline visualization, matching the typical data flow representation in documentation. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent de00340 commit 4d6b7ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/datajoint/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class DisplaySettings(BaseSettings):
223223
width: int = 14
224224
show_tuple_count: bool = True
225225
diagram_direction: Literal["TB", "LR"] = Field(
226-
default="TB",
226+
default="LR",
227227
validation_alias="DJ_DIAGRAM_DIRECTION",
228228
description="Default diagram layout direction: 'TB' (top-to-bottom) or 'LR' (left-to-right)",
229229
)

0 commit comments

Comments
 (0)