如何设置PowerPoint图表点文本标签以匹配标记颜色?

时间:2014-01-28 23:01:03

标签: powerpoint-vba

在X-Y散点图中,我通过Point.DataLabel手动将文本标签添加到数据点。不幸的是,我发现当点数拥挤时,很难分辨出标签属于哪个系列。因此,我想为文本标签着色以匹配标记。

我对默认标记及其颜色很满意,但不幸的是它们包含MarkerForegroundColor = -1和MarkerForegroundColorIndex = 0,无论我看哪个系列。此外,Application.ActivePresentation.ColorSchemes为空。我注意到point.MarkerStyle = xlMarkerStyleAutomatic。

1 个答案:

答案 0 :(得分:0)

我发现颜色与活动主题中的强调颜色相对应(仅在PowerPoint 2007及更高版本中可用):

presentation.SlideMaster.Theme.ThemeColorScheme.Colors(MsoThemeColorSchemeIndex.msoThemeAccent1 + series_i % 6);