|
-
Aug 29th, 2000, 03:58 PM
#1
Thread Starter
Junior Member
Hi
I have a graph produced from equations in my code and when it is displayed it is in 2 point (too thick). The property pages for MSChart are of no help so I was wondering what the code is for making the line 1 point?
Thanks.
-
Aug 29th, 2000, 04:14 PM
#2
Frenzied Member
is this what you need:
Code:
Private Sub Form_Load()
Line1.BorderWidth = 1
End Sub
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 04:22 PM
#3
Thread Starter
Junior Member
re
Hi
When I try that I get the eror message 'Method or data member not found'.
Help!
-
Aug 29th, 2000, 04:23 PM
#4
Frenzied Member
what version of vb are you using?
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 04:25 PM
#5
Thread Starter
Junior Member
-
Aug 29th, 2000, 04:28 PM
#6
Frenzied Member
thats strange, it should work
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 04:33 PM
#7
Thread Starter
Junior Member
re
Hi
Here is the code which creates the line:-
With MSChart1
.Plot.Axis(VtChAxisIdX).CategoryScale.Auto = True
.Plot.AxisVtChAxisIdX).CategoryScale.DivisionsPerTick = q / 10
.Plot.SeriesCollection(1).Position.Excluded = True 'hide time data
.ChartType = VtChChartType2dLine
.ChartData = Data()
End With
Thanks.
-
Aug 29th, 2000, 08:22 PM
#8
Addicted Member
In the MSChart Property Pages, click the tab that says "Series Color". Make sure the graph is set to be a line graph (you can set this from the "Chart" tab); now you can select the line thickness, pattern, and color of the line in the "Edge/Line" Section on that tab.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|