0
私は特定のデータをプロットしようとしました。そのために、私はこのコードを作っ:VBA:VBAを使用してExcelチャートから凡例の名前を編集する
Sub plotsim()
Dim sh As Worksheet
Dim chrt As Chart
worksh = Application.Sheets.Count
Set sh = ActiveWorkbook.Worksheets("Simulation")
Set chrt = sh.Shapes.AddChart.Chart
With chrt
.ChartType = xlLine
.SeriesCollection.NewSeries
.SeriesCollection(1).Name = "=""Portfolio forecast"""
.SeriesCollection(1).XValues = Sheets("Simulation").Range("A2:A" & fsize + 1)
.SeriesCollection(1).Values = Sheets("Simulation").Range(Sheets("Simulation").Cells(2, worksh + 1), Sheets("Simulation").Cells(fsize + 1, worksh + 1))
End With
End Sub
をしかし、私はチャートを見てみたら、私が見るには、2本の異なるラインを持つ伝説です。
シリーズ2のタイトルを削除(または編集)するにはどうすればよいですか?
AFAIKをクリックすると、グラフをクリックしてもう一度凡例をクリックして "Series2"だけを選択してから、 DELETEキーを押す。 – BruceWayne