Jump to content
Software FX Community

PointLabelColor Property


User (Legacy)

Recommended Posts

Hi,

I am trying to use the PointLabelColor property to change the color of the

datavalues on the chart. However, I am getting an error

My code is as below

ChartFX1.PointLabels = TRUE

ChartFX1.series(0).PointLabelColor = RGB(0,0,255)

The error I get is

Microsoft VBScript runtime error '800a01b6'

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

Any idea what the problem is.

Let me know

Thanks

Link to comment
Share on other sites

PointLabelColor isnt a property per series.

you need :

ChartFX1.PointLabelColor = RGB(0,0,255)

Olgac

SFX

"Rich" <none@none.com> wrote in message

news:d71gyGr9BHA.812@webserver1.softwarefx.com...

> Hi,

> I am trying to use the PointLabelColor property to change the color of the

> datavalues on the chart. However, I am getting an error

>

> My code is as below

> ChartFX1.PointLabels = TRUE

> ChartFX1.series(0).PointLabelColor = RGB(0,0,255)

>

> The error I get is

> Microsoft VBScript runtime error '800a01b6'

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

>

> Any idea what the problem is.

> Let me know

> Thanks

>

>

>

>

Link to comment
Share on other sites

Olgac,

I have tried using it at a chart level instead of series and I get the same

error

Sorry, I didn't mention that earlier

Rich

"Software FX Support" <cfxie@softwarefx.com> wrote in message

news:e70oLmr9BHA.1088@webserver1.softwarefx.com...

> PointLabelColor isnt a property per series.

> you need :

>

> ChartFX1.PointLabelColor = RGB(0,0,255)

>

> Olgac

> SFX

>

> "Rich" <none@none.com> wrote in message

> news:d71gyGr9BHA.812@webserver1.softwarefx.com...

> > Hi,

> > I am trying to use the PointLabelColor property to change the color of

the

> > datavalues on the chart. However, I am getting an error

> >

> > My code is as below

> > ChartFX1.PointLabels = TRUE

> > ChartFX1.series(0).PointLabelColor = RGB(0,0,255)

> >

> > The error I get is

> > Microsoft VBScript runtime error '800a01b6'

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

'PointLabelColor'

> >

> > Any idea what the problem is.

> > Let me know

> > Thanks

> >

> >

> >

> >

>

>

post-2107-13922392379342_thumb.jpg

Link to comment
Share on other sites

I'm sorry i gave you the wrong information.

PointLabelColor has been removed used this instead:

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

OlgaC

"Rich" <none@none.com> wrote in message

news:PYRw6Ms9BHA.812@webserver1.softwarefx.com...

> Olgac,

> I have tried using it at a chart level instead of series and I get the

same

> error

>

> Sorry, I didn't mention that earlier

> Rich

>

>

>

> "Software FX Support" <cfxie@softwarefx.com> wrote in message

> news:e70oLmr9BHA.1088@webserver1.softwarefx.com...

> > PointLabelColor isnt a property per series.

> > you need :

> >

> > ChartFX1.PointLabelColor = RGB(0,0,255)

> >

> > Olgac

> > SFX

> >

> > "Rich" <none@none.com> wrote in message

> > news:d71gyGr9BHA.812@webserver1.softwarefx.com...

> > > Hi,

> > > I am trying to use the PointLabelColor property to change the color of

> the

> > > datavalues on the chart. However, I am getting an error

> > >

> > > My code is as below

> > > ChartFX1.PointLabels = TRUE

> > > ChartFX1.series(0).PointLabelColor = RGB(0,0,255)

> > >

> > > The error I get is

> > > Microsoft VBScript runtime error '800a01b6'

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

> 'PointLabelColor'

> > >

> > > Any idea what the problem is.

> > > Let me know

> > > Thanks

> > >

> > >

> > >

> > >

> >

> >

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...