Complete the code to add a title to a Power BI visual.
Visual.Title.Text = "[1]"
The title of a visual should clearly describe what the visual shows. "Sales Overview" is a good descriptive title.
Complete the code to set the X-axis label in a Power BI chart.
Visual.XAxis.Title.Text = "[1]"
The X-axis usually represents categories or time periods. "Month" is a common label for the X-axis in time series charts.
Fix the error in the code to correctly display the legend title.
Visual.Legend.Title.Text = "[1]"
The correct property to set the legend title text is "Legend Title". Other options are either plural or incorrect property names.
Fill both blanks to set the Y-axis label and enable the legend in a Power BI visual.
Visual.YAxis.Title.Text = "[1]" Visual.Legend.Visible = [2]
The Y-axis label should describe the measure, such as "Sales". To show the legend, set Visible to True.
Fill all three blanks to set the chart title, X-axis label, and disable the legend.
Visual.Title.Text = "[1]" Visual.XAxis.Title.Text = "[2]" Visual.Legend.Visible = [3]
The chart title should describe the data, e.g., "Monthly Revenue". The X-axis label is "Month". To hide the legend, set Visible to False.