Support Notes & Color for Table Groups

You can now set customized colors and add notes to table groups.

table-groups-notes-and-color

Table Group Color

No more boring, grayed-out table groups that are difficult to spot when zoomed out, as you can now make them more colorful and distinct.

You can directly pick a color for your table group in the UI or use the following coding syntax:

TableGroup "Order Management" [color: #E74C3C] {
  ...
}

select-color-for-table-group

Table Group Notes

Add Markdown descriptions for table groups to provide extra information, such as their purposes, specific details about child tables, and so on.

To add notes, use the following syntax:

TableGroup "User Wishlist System" [note: 'Manages the user wishlist functionality'] {
  ... 
	
  // Or use multi-line string to define Markdown content
  Note: '''
  This group manages the user wishlist functionality.
  - wishlists: Stores user-specific wishlists.
  - wishlist_items: Contains items added to each wishlist.
  '''
}

add-notes-to-table-group


Both features are available as part of our paid Table Group feature set.

For the latest update on new features, make sure to follow us on our social media: :bird: X (TWITTER) - :luggage: LINKEDIN

Thank you for your continued support and trust in our products.

From dbx team with :heart:

Does Table Groups and Color Options available via the REST API ?

Yes, you can group tables and change the color of table groups by updating the diagram’s DBML content through the API.

1 Like