elogesh
Mechanical
- May 10, 2002
- 187
hi,
I have the following data in sheet1 from A1 to B10
0 0
100 100
200 100
300 100
400 100
500 100
600 100
700 100
800 100
900 100
Used the following code to plot horizontal line in the chart1. But unable to fit the line within the chart.
Option Explicit
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 5/17/2016 by Elogesh
'
'
Dim last_row As Integer
Dim i As Integer
Charts.Add
Worksheets("Sheet1").Activate
last_row = Sheet1.Range("A1").End(xlDown).Row
For i = 1 To last_row - 1
ActiveWorkbook.Sheets("Chart1").Activate
ActiveSheet.Shapes.AddLine(Sheet1.Cells(i, 1), Sheet1.Cells(i,2), Sheet1.Cells(i+1, 1), Sheet1.Cells(i+1,2)).Select
Selection.ShapeRange.Line.DashStyle = msoLineSolid
Selection.ShapeRange.Line.ForeColor.RGB = RGB(50, 0, 128)
Selection.ShapeRange.Line.Weight = 3
Next i
End Sub
Kindly let us know how to fit the lines within the chart. Whether X, Y range for the chart can be specified prior to "addline", so that it can be autofit/scaled within the chart.
Thanks
Logesh
I have the following data in sheet1 from A1 to B10
0 0
100 100
200 100
300 100
400 100
500 100
600 100
700 100
800 100
900 100
Used the following code to plot horizontal line in the chart1. But unable to fit the line within the chart.
Option Explicit
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 5/17/2016 by Elogesh
'
'
Dim last_row As Integer
Dim i As Integer
Charts.Add
Worksheets("Sheet1").Activate
last_row = Sheet1.Range("A1").End(xlDown).Row
For i = 1 To last_row - 1
ActiveWorkbook.Sheets("Chart1").Activate
ActiveSheet.Shapes.AddLine(Sheet1.Cells(i, 1), Sheet1.Cells(i,2), Sheet1.Cells(i+1, 1), Sheet1.Cells(i+1,2)).Select
Selection.ShapeRange.Line.DashStyle = msoLineSolid
Selection.ShapeRange.Line.ForeColor.RGB = RGB(50, 0, 128)
Selection.ShapeRange.Line.Weight = 3
Next i
End Sub
Kindly let us know how to fit the lines within the chart. Whether X, Y range for the chart can be specified prior to "addline", so that it can be autofit/scaled within the chart.
Thanks
Logesh