Hello,
I have a small problem with a line graph on a form, it's a "history graph" so it will only get more and more "lines" as time goes by.
Problem: Changing the line weight in the line graph with VBA.
I found this code online and it works for him but I get "Run-time error 438: Object doesn't support this property or method".
Access 2013
Microsoft Graph 16.0 Object Library
So was wondering if anyone can help me with this or do I just have to change them manually in the graph pattern option?
Thanks in advance
I have a small problem with a line graph on a form, it's a "history graph" so it will only get more and more "lines" as time goes by.
Problem: Changing the line weight in the line graph with VBA.
I found this code online and it works for him but I get "Run-time error 438: Object doesn't support this property or method".
Code:
With Me.Graph_History.Charts(0).SeriesCollection(0)
.Line.Weight = 6
End With
Access 2013
Microsoft Graph 16.0 Object Library
So was wondering if anyone can help me with this or do I just have to change them manually in the graph pattern option?
Thanks in advance
