Jump to content
Software FX Community

PointLabelColor Error


User (Legacy)

Recommended Posts

Background:

I had a functional ASP page that generated charts correctly, and without

error. I added one additional property setting to change the PointLabels

color to white. The only change made to the working code was the following

property setting:

Chart.PointLabelColor = RGB(255,255,255)

When I attempt to generate the chart, I get the following error:

Microsoft VBScript runtime error '800a01b6'

Object doesn't support this property or method:

'Chart.PointLabelColor'

Any advice would be appreciated,

--Bob

Link to comment
Share on other sites

  • 1 year later...

This looks to still be a problem.  Has anyone found a workaround?

"Bob Glassley" <bob.glassley@planetjam.com> wrote in message

news:xFVNqwyr8GA.1696@webserver1.softwarefx.com...

> Background:

> I had a functional ASP page that generated charts correctly, and without

> error. I added one additional property setting to change the PointLabels

> color to white. The only change made to the working code was the following

> property setting:

>

> Chart.PointLabelColor = RGB(255,255,255)

>

> When I attempt to generate the chart, I get the following error:

>

> Microsoft VBScript runtime error '800a01b6'

> Object doesn't support this property or method:

> 'Chart.PointLabelColor'

>

> Any advice would be appreciated,

> --Bob

>

>

>

Link to comment
Share on other sites

Found the right answer in a non threaded post.

Chart.RGBFont(8) = RGB(255,0,0)

"Peter Davis" <peter@ctsg.com> wrote in message

news:WSrpdeIwBHA.1412@webserver1.softwarefx.com...

> This looks to still be a problem. Has anyone found a workaround?

>

>

> "Bob Glassley" <bob.glassley@planetjam.com> wrote in message

> news:xFVNqwyr8GA.1696@webserver1.softwarefx.com...

> > Background:

> > I had a functional ASP page that generated charts correctly, and without

> > error. I added one additional property setting to change the

PointLabels

> > color to white. The only change made to the working code was the

following

> > property setting:

> >

> > Chart.PointLabelColor = RGB(255,255,255)

> >

> > When I attempt to generate the chart, I get the following error:

> >

> > Microsoft VBScript runtime error '800a01b6'

> > Object doesn't support this property or method:

> > 'Chart.PointLabelColor'

> >

> > Any advice would be appreciated,

> > --Bob

> >

> >

> >

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...