Excel中如何一次性大量修改散点图的曲线粗细?

2024-11-02 19:18:00
推荐回答(3个)
回答1:

全部选中---选择边框---线性(小三角)---根据自己的需求选择不同类型的线,和不容粗细的线

回答2:

几千条,用宏:

 

Sub test()

For Each ichart In ActiveSheet.ChartObjects

    ichart.Activate

    ActiveChart.SeriesCollection(1).Select

    With Selection.Border

        .Weight = xlThick '变为粗线

        .LineStyle = xlContinuous

    End With

Next

End Sub

回答3:

Sub x()
For i = 1 To 121
ActiveChart.SeriesCollection(i).Select
Selection.MarkerSize = 4
Selection.Format.Line.Weight = 0.25
Next
End Sub