Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


71717 / 76734 ←次へ | 前へ→

【9510】Re:グラフの重ね合わせ(2)
回答  Kein  - 03/12/5(金) 20:37 -

引用なし
パスワード
   これでどうでしょーか ?

Sub MyChart_StockData()
  Dim ChTxt As String
  Dim MyR As Range
  Dim MinV As Long, Bet As Long
  Dim Ns As Series
 
  ChTxt = InputBox("グラフタイトルを入力して下さい")
  If ChTxt = "" Then Exit Sub
  Set MyR = Sheets("Sheet1").Range("A1").CurrentRegion
  Application.ScreenUpdating = False
  Charts.Add
  With ActiveChart
   .SetSourceData Source:= _
   Range(MyR.Columns(1), MyR.Columns(5)), _
   PlotBy:=xlColumns
   .ChartType = xlStockOHLC
   .Location Where:=xlLocationAsNewSheet
   .HasLegend = False
   .Axes(xlCategory).CategoryType = xlCategoryScale
   MinV = CLng(WorksheetFunction.Min(MyR.Columns(4))
   With .Axes(xlValue)
     Bet = Int(.MajorUnit)
     .MinimumScale = WorksheetFunction.Floor(MinV, Bet)
   End With
   If MyR.Columns.Count = 6 Then
     Set Ns = .SeriesCollection.NewSeries
     With Ns
      .XValues = MyR.Columns(1)
      .Values = MyR.Columns(6)
      .AxisGroup = 2
      .ChartType = xlColumnClustered
      .Interior.ColorIndex = 39
      .Border.ColorIndex = 39
     End With
     With .Axes(xlValue, xlSecondary)
      .MaximumScale = 100
      .MinimumScale = 0
     End With
   End If
   With .ChartGroups(1)
     .HasUpDownBars = True
     .DownBars.Interior.ColorIndex = 5
     .DownBars.Border.ColorIndex = 5
     .UpBars.Interior.ColorIndex = 6
     .UpBars.Border.ColorIndex = 6
   End With   
   With .SeriesCollection(4).Trendlines _
   .Add(Type:=xlMovingAvg, Period:=13).Border
     .ColorIndex = 10
     .Weight = xlHairline
   End With
   With .SeriesCollection(4).Trendlines _
   .Add(Type:=xlMovingAvg, Period:=25).Border
     .ColorIndex = 3
     .Weight = xlHairline
   End With
   .SizeWithWindow = True
   .HasTitle = True
   .ChartTitle.Font.Size = 11
   .ChartTitle.Characters.Text = ChTxt
   .Name = ChTxt
   .Deselect
  End With
  Application.ScreenUpdating = True
End Sub
2 hits

【9475】グラフの重ね合わせ(2) NH 03/12/4(木) 19:53 質問
【9483】Re:グラフの重ね合わせ(2) Kein 03/12/5(金) 1:37 回答
【9509】Re:グラフの重ね合わせ(2) NH 03/12/5(金) 19:20 質問
【9510】Re:グラフの重ね合わせ(2) Kein 03/12/5(金) 20:37 回答
【9511】Re:グラフの重ね合わせ(2) NH 03/12/5(金) 20:54 発言
【9516】Re:グラフの重ね合わせ(2) Kein 03/12/6(土) 0:04 回答
【9521】Re:グラフの重ね合わせ(2) NH 03/12/6(土) 9:54 お礼

71717 / 76734 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free