0
0
Power BIbi_tool~10 mins

Title, labels, and legends in Power BI - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to add a title to a Power BI visual.

Power BI
Visual.Title.Text = "[1]"
Drag options to blanks, or click blank then click option'
ASales Overview
BChart Axis
CData Table
DLegend
Attempts:
3 left
💡 Hint
Common Mistakes
Using labels or legends as the title text.
Leaving the title blank.
2fill in blank
medium

Complete the code to set the X-axis label in a Power BI chart.

Power BI
Visual.XAxis.Title.Text = "[1]"
Drag options to blanks, or click blank then click option'
AMonth
BRevenue
CCategory
DTotal
Attempts:
3 left
💡 Hint
Common Mistakes
Using a measure name instead of a category for the X-axis label.
Confusing X-axis label with Y-axis label.
3fill in blank
hard

Fix the error in the code to correctly display the legend title.

Power BI
Visual.Legend.Title.Text = "[1]"
Drag options to blanks, or click blank then click option'
ALegendLabel
BLegends
CLegend Title
DLegend
Attempts:
3 left
💡 Hint
Common Mistakes
Using plural form "Legends" which is invalid.
Using incorrect property names like "LegendLabel".
4fill in blank
hard

Fill both blanks to set the Y-axis label and enable the legend in a Power BI visual.

Power BI
Visual.YAxis.Title.Text = "[1]"
Visual.Legend.Visible = [2]
Drag options to blanks, or click blank then click option'
ASales
BTrue
CFalse
DProfit
Attempts:
3 left
💡 Hint
Common Mistakes
Setting legend visibility to False when it should be shown.
Using a category name instead of a measure for Y-axis label.
5fill in blank
hard

Fill all three blanks to set the chart title, X-axis label, and disable the legend.

Power BI
Visual.Title.Text = "[1]"
Visual.XAxis.Title.Text = "[2]"
Visual.Legend.Visible = [3]
Drag options to blanks, or click blank then click option'
AMonthly Revenue
BMonth
CFalse
DSales
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the X-axis label with the Y-axis label.
Setting legend visibility to True when it should be hidden.