UI-Configuration JSON
Below is a base UI Configuration JSON will all items turn on. If you see any of these values to false it will turn off the top level item. If the top level item is turned into an Object it will then read the settings of that object. You can note that below in the other documentation.
1 2 3 4 5 6 7 8 9 10 | |
Below is the configuration JSON for a view with all of the items turned off
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | |
UITimeline settings
When UITimeline is expanded to an object, these keys control timeline visibility and the inline legend column:
| Key | Type | Default | Description |
|---|---|---|---|
UIDetections |
boolean | true |
Show the Detections timeline view button. Set to false to hide. |
UIEvents |
boolean | true |
Show the Events timeline view button. Set to false to hide. |
UILegendControls |
boolean | true |
Show the legend/key toggle button in the timeline control bar. Set to false to hide. |
UILegendForceOpen |
boolean | false |
When true, always show the legend and prevent closing it. |
UILegendHideToggle |
boolean | false |
When true, hide the legend toggle button (often used with UILegendForceOpen). |
UILegendKeyMinWidth |
number | 80 |
Minimum legend column width in pixels. |
UILegendKeyMaxWidth |
number | 150 |
Maximum legend column width in pixels. |
Example with legend forced open and a wider key column:
1 2 3 4 5 6 | |
Note
UILegendControls, UILegendForceOpen, and UILegendHideToggle previously lived under UIControls. Older configurations still work; the UI migrates those keys to UITimeline when Timeline settings are saved.