Complete the code to change the background color of a visual in Power BI.
VisualFormat.Background.Color = [1]Setting the background color to "#FF0000" changes it to red.
Complete the code to set the font size of a visual's title in Power BI.
VisualFormat.Title.TextSize = [1]Setting the title font size to 18 makes it clearly visible but not too large.
Fix the error in the code to set the data label color in Power BI.
VisualFormat.DataLabels.Color = [1]Colors must be set using hex codes in quotes like "#FF0000" for red.
Fill both blanks to set the border style and thickness of a visual in Power BI.
VisualFormat.Border.Style = [1] VisualFormat.Border.Thickness = [2]
Setting border style to "Solid" and thickness to 2 creates a clear but subtle border.
Fill all three blanks to set the font family, font color, and font weight of a visual's axis labels in Power BI.
VisualFormat.AxisLabels.FontFamily = [1] VisualFormat.AxisLabels.Color = [2] VisualFormat.AxisLabels.FontWeight = [3]
Using "Times New Roman" font, black color "#000000", and "Bold" weight makes axis labels clear and professional.