Changing display name for an axis
You can specify your own display name for an axis.
About this task
Procedure
Example
In the bar chart below, the display name on the Value axis is changed from Max(Temp) to Highest temp. The visualization title adjusts automatically (as long as AutoTitle is used for the visualization name).

If multiple columns are used on an axis, you can change the display names for each of the columns by repeating the steps above for each separate column selector.
Changing display name on a column selector by modifying the expression
If you are writing complex custom expressions involving more than one column you might want to change the display name on an axis by modifying the expression behind the axis directly using the "AS" keyword.
About this task

You might want to shorten the names on the column selectors to say just Sales and Profit respectively. To do that, follow the steps below:
Procedure
- Right-click the column selector you want to modify.
- Select Custom expression from the menu.
-
Note that the current expression is
Sum([Sales Total]), Sum([Gross Profit]). -
Modify the text string to
Sum([Sales Total]) AS Sales, Sum([Gross Profit]) AS Profit. - Click OK.
Results
