Currently, a column chart shows values on the value axis, years on the category axis, and state names in the legend. What should you do if you want to organize data with the states on the category axis and the years shown in the legend?
A) change the chart type to a column chart
B) click Switch Row/Column in the Data group on the Design tab.
C) click layout 2 in the chart layouts group
D) click legend in the labels group on the layout tab and select show legend on bottom
Click Switch Row/Column in the Data group on the Design tab.
You might also like to view...
Case-Based Critical Thinking QuestionsCase 6-3Larry has just bought an online Web hosting solution from a popular ISP. He knows the ISP provides some scripts to allow people to create logon pages for their Web site if they want to have a password-protected blog, for example. Larry wants to create such a page for his blog about video games. Before Larry builds his form, which of the following should he consult concerning required fields?
A. his ISP B. his other Web pages C. his desired form design D. none of the above
Explain the role of a servlet container in the deploying of a web service and the execution of a client request.
What will be an ideal response?
Choose the correct adjective in the following sentence.? Of the two proposals presented, the committee considered the first one the _____ of the two.
A. ?best B. ?better
switch (phoneDigit){ case 1: num = 1; break; case 2: num = 2; break; case 3: num = 3; break; case 4: num = 4; break; default: num = 0; break;} Looking at the example above, what happens if the break is omitted?
A. a syntax error is generated B. num is always assigned 0 C. num is never assigned a value D. num is assigned 1