標題:
(已解決)如何處理圖表中所有標籤內容?
[打印本頁]
作者:
freeffly
時間:
2011-12-23 13:21
標題:
(已解決)如何處理圖表中所有標籤內容?
本帖最後由 freeffly 於 2012-2-22 16:51 編輯
如圖中我想要讓美各標簽內容都是藍色 字體大小10
這種要如何寫?
試過總是會出現型態不符這類的字眼
[attach]8910[/attach]
作者:
freeffly
時間:
2012-1-11 16:49
本帖最後由 freeffly 於 2012-1-11 16:50 編輯
下面是我後來在國外網站找到的
可以用
有需要的人可以參考
上面的是國外例子
下面的是我這個例子用的
Sub linewidth()
For Each SeriesCollection In ActiveChart.SeriesCollection
If SeriesCollection.Type = 4 Then
SeriesCollection.Format.Line.Weight = 4.5
End If
Next SeriesCollection
End Sub
Sub linewidth()
For Each S In ActiveChart.SeriesCollection
With S.DataLabels.Font
.Name = "新細明體"
.FontStyle = "標準"
.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 5
.Background = xlAutomatic
End With
Next
End Sub
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)