WORKAROUND
To work around this behavior, change the formats for the legend keys that correspond to the series in the surface chart. To do this, use one of the following methods.
Method 1
To change the color of the legend key manually, follow these steps:
- Switch to the chart that you want to edit.
- Click the legend.
- Click the legend key for the series that you want to edit.
NOTE: The legend key is the object in the legend that displays the color and pattern for the series. The legend entry includes the object and the text. - On the Format menu, click Selected Legend.
NOTE: If Selected Legend does not appear on the Format menu, repeat step 3.
- Make the changes you want, and then click OK.
Method 2
Microsoft provides programming examples for illustration only, without warranty either
expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
To change the color of the legend key programmatically, use the following
syntax:
ActiveChart.Legend.LegendEntries(1).LegendKey.Interior.ColorIndex = 5
NOTE: The number 1 represents the first series in the chart, and 5 represents the color (blue) to change the series to. These numbers must be integers.