Hi @BryanM
Use "Color by Y-Series" for Grouping
In Databricks, the "Color by Y-Series" section IS your grouping mechanism for area charts:
Add your grouping dimension (the field you want to group by) to the "Color by Y-Series" section
This will create separate colored areas for each group
Each group will be stacked in the area chart
Check Your Data:
Make sure your underlying query returns the grouping field. You can verify by:
1. Running your query in the SQL editor first
2. Ensuring the grouping column appears in the results
3. Then configuring the visualization
The key insight for Databricks is that "Color by Y-Series" is your grouping mechanism - it's not called "Group by" but
functions the same way by creating separate colored series for each distinct value in that field.
LR