list of properties for objects in class MSGraph.chart.8

P

paulv

I am trying to find a list of properties on the objects of an
MSGraph.chart.8. Specifically, I am trying to set the colors of the lines
for the data series in a line graph and I do not know the specific property
name(s) to do this.
 
B

BeWyched

Hi PaulV

Try:

objGraph.SeriesCollection(1).Border.Color = RGB(255, 255, 255)

Change the (1) to suit the line you want to colour. The RGB index is the
standard range from (0, 0, 0) to (255, 255, 255) - e.g (255, 0, 0) is red. If
you don't know the RGB index then 'paint' a text box in Access, steal the
colour reference and use that instead.

Don't be confused with the reference to 'border' - in MSGraph context, a
'line' is a box (insides, surrounded by a border) with no insides !

Cheers.

BW
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top