You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Customizes the color palette used forplot linesin the Trackio dashboard. The value should be a comma-separated list of hex color codes. These colors will be cycled through when plotting multiple runs.
Controls the maximum length of string values displayed in table cells before they are truncated. When a cell value exceeds this length, it will be truncated with an expandable element that allows viewing the full text. Defaults to `250` characters.
Copy file name to clipboardExpand all lines: docs/source/launch.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,31 @@ trackio.show(theme="soft")
71
71
72
72
To see the available themes, check out the [themes gallery](https://huggingface.co/spaces/gradio/theme-gallery).
73
73
74
+
## Customizing Plot Colors
75
+
76
+
You can customize the color palette used for plot lines by providing a `color_palette` argument. This is useful if you want to match your organization's branding or have specific color preferences.
77
+
78
+
<hfoptionsid="language">
79
+
<hfoptionid="Shell">
80
+
81
+
```sh
82
+
trackio show --color-palette "#FF0000,#00FF00,#0000FF"
Copy file name to clipboardExpand all lines: trackio/cli.py
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,19 @@ def main():
24
24
action="store_true",
25
25
help="Enable MCP server functionality. The Trackio dashboard will be set up as an MCP server and certain functions will be exposed as MCP tools.",
26
26
)
27
+
ui_parser.add_argument(
28
+
"--color-palette",
29
+
required=False,
30
+
help="Comma-separated list of hex color codes for plot lines (e.g. '#FF0000,#00FF00,#0000FF'). If not provided, the TRACKIO_COLOR_PALETTE environment variable will be used, or the default palette if not set.",
0 commit comments