Describe the three Format task panes that allows you to format with fill and border elements of a chart
What will be an ideal response?
The Format Chart Area pane can be used to add fill to a chart area--color, a picture, texture, or a pattern. The Format Plot area allows you to add a border on a chart that is a solid line or a gradient line. The Format Data series pane also allows you to add a solid fill, gradient fill, or picture or texture fill to individual data series in a chart.
You might also like to view...
To insert a comment, click the ________ tab
Fill in the blank(s) with correct word
Which of the following statements is false?
Consider the code: public void SetName(string accountName) { name = accountName; // store the account name a) The first line of each method declaration is the method header. b) The method’s return type (which appears to the left of the method’s name) specifies the type of data the method returns to its caller after performing its task. c) The return type void indicates that when SetName completes its task, it does not return any information to its calling method. d) A method requires one or more parameters that represent the data it needs to performits task.