I'm trying to display custom names for the Row data fetched using IN condition in Kusto.
Below is the table structure-
Below is the query I've used-
customEvents
| project Action=customDimensions["ActionInvoked"]
| where Action in (
"viewSelected",
"myProjectsSelected",
"watchlistSelected"
)
| summarize count() by tostring(Action)
| sort by count_
| render columnchart
The output to the query is as below-
As noticed in the output highlighted column names ("viewSelected","myProjectsSelected" & "watchlistSelected") are being rendered as is.
These are not User friendly and I'd like to change it.

NOTE: I'm just a day old to Kusto, so my query might be bad. Please feel free to change it to a better one if needed.

