I am trying to create a serial chart in ArcGIS Dashboard (Enterprise v12) but the unique number of categories is almost 360 and the bar chart is too overwhelming with this many values. I would like to minimize it by using data expressions but not sure how to do it. For example, current data is setup like:
| Type | Descriptor (additional field - unrelated) |
| Speed Limit: 5mph | 5 |
| Speed Limit: 10mph | 63 |
| Speed Limit: 15mph | 32 |
| Speed Limit: 20mph | 80 |
| Speed Limit: 25mph | 46 |
| Warning: Dead end | 3 |
| Warning: Bicycles | 10 |
| Warning: Pedestrian | 8 |
| Regulatory: Stop | 79 |
| ...and so on | etc. |
I would like to group these in the chart as a single category by "Speed Limit*" so the expression would create a table like this below. Is this possible? If so then I could really use the help and greatly appreciate it!
| Type | Descriptor | New field for Chart |
| Speed Limit: 5mph | 5 | Speed Limit |
| Speed Limit: 10mph | 63 | Speed Limit |
| Speed Limit: 15mph | 32 | Speed Limit |
| Speed Limit: 20mph | 80 | Speed Limit |
| Speed Limit: 25mph | 46 | Speed Limit |
| Warning: Dead end | 3 | Warning |
| Warning: Bicycles | 10 | Warning |
| Warning: Pedestrian | 8 | Warning |
| Regulatory: Stop | 79 | Regulatory |
| ...and so on | etc. | etc. |