Excel VBA线条颜色/标记线条颜色

时间:2015-04-16 13:00:33

标签: excel vba charts

我正在编写一些VBA代码来修改Excel图表。对于散点图,我需要修改标记线颜色,有时还需要修改连接线的线条颜色。我可以手动完成,但是当我录制宏时,尽管结果非常不同,但两个动作都会产生相同的代码。

知道如何区分代码中的线条颜色和标记线颜色吗?

当我记录自己改变标记线的颜色时创建了这段代码

Sub Macro3()
'

    ' Macro3 Macro
    '
    '
        ActiveChart.SeriesCollection(2).Select
        With Selection.Format.Line
            .Visible = msoTrue
            .ForeColor.ObjectThemeColor = msoThemeColorAccent1
            .ForeColor.TintAndShade = 0
            .ForeColor.Brightness = 0
        End With
    End Sub

此代码是在我录制自己更改连接标记

的线条颜色时创建的
Sub Macro4()
'
' Macro4 Macro
'
'
'Change the Line Color
    ActiveChart.SeriesCollection(2).Select
    With Selection.Format.Line
        .Visible = msoTrue
        .ForeColor.ObjectThemeColor = msoThemeColorAccent1
        .ForeColor.TintAndShade = 0
        .ForeColor.Brightness = 0
    End With
End Sub

3 个答案:

答案 0 :(得分:16)

连接线的线条颜色为Series.Format.Line.ForeColor。标记线颜色为Series.MarkerForegroundColor。但至少使用Excel 2007时,设置Series.Format.Line.ForeColor会出现问题。见例:

Sub Macro3()
 Dim oChart As Chart
 Dim oSeries As Series

 Set oChart = ActiveChart
 Set oSeries = oChart.SeriesCollection(2)

 oSeries.Format.Line.Weight = 5 'Line.Weigth works ever

 oSeries.Format.Line.Visible = msoFalse 'for Line.ForeColor getting to work we have to cheat something
 oSeries.Format.Line.Visible = msoTrue
 oSeries.Format.Line.ForeColor.RGB = RGB(0, 255, 0) 'now it works

 oSeries.MarkerSize = 15
 oSeries.MarkerBackgroundColor = RGB(255, 0, 0) 'marker background

 oSeries.MarkerForegroundColor = RGB(0, 0, 255) 'marker foreground (lines around)
End Sub

ActiveChart是散点图。这是使用Excel 2007测试的。

答案 1 :(得分:4)

从Excel 2013开始,线条颜色和标记线颜色很容易区分,因为使用 .Border 属性设置线条颜色,而使用设置标记颜色。 MarkerBackgroundColor .MarkerForegroundColor 属性。

因此,以下内容将为您提供白色标记,红色边框和黑色连接线:

ActiveChart.SeriesCollection(1).Select
With Selection
    .Border.LineStyle = xlContinuous
    .Border.Color = RGB(0,0,0)
    .MarkerBackgroundColor = RGB(255, 255, 255)
    .MarkerForegroundColor = RGB(255, 0, 0)
End With

注意:如果您使用 Selection.Format.Line.Weight ,请注意这默认情况下适用于边框和连接线条粗细

答案 2 :(得分:0)

您可以使用

ActiveChart.SeriesCollection(1).MarkerForegroundColor = -2