Jump to content
Software FX Community

Want Hidden Line


User (Legacy)

Recommended Posts

I've got this:

chartvc.Series(3).Gallery = LINES

chartvc.Series(3).MarkerShape = MK_DIAMOND

chartvc.Series(3).LineStyle = CHART_DOT

But what I really want is somehting like this:

chartvc.Series(3).Gallery = LINES

chartvc.Series(3).MarkerShape = MK_DIAMOND

chartvc.Series(3).LineStyle = CHART_NONE

But of course... CHART_NONE doesn't exist.... I just want that line

hidden... and want

to see the Diamonds at the relavant points.

Can I do this in your chart package?

Link to comment
Share on other sites

Instead of using the Gallery type "LINES," use the gallery type "SCATTER."

The SCATTER gallery type just plots points and does not try to connect them.

Chris

"Michael Kolodenko" <mkolodenko@hotmail.com> wrote in message

news:xYRs19vuBHA.2636@webserver1.softwarefx.com...

> I've got this:

>

> chartvc.Series(3).Gallery = LINES

> chartvc.Series(3).MarkerShape = MK_DIAMOND

> chartvc.Series(3).LineStyle = CHART_DOT

>

> But what I really want is somehting like this:

>

> chartvc.Series(3).Gallery = LINES

> chartvc.Series(3).MarkerShape = MK_DIAMOND

> chartvc.Series(3).LineStyle = CHART_NONE

>

> But of course... CHART_NONE doesn't exist.... I just want that line

> hidden... and want

> to see the Diamonds at the relavant points.

>

> Can I do this in your chart package?

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...