Jump to content
Software FX Community

Drop Lines in Chart with Alpha Colours


sfalla

Recommended Posts

I have an area chart with two series, where one series may mask the data of the other. So I have made the front one have a slight alpha transparency to it.


However this series now ends up with drop lines for each data point which I cannot seem to turn off.


The documentation would seem to imply that I could turn it off with


Chart.Series(0).InternalBorder = False


but the drop lines remain.


I have also tried to just turn off the border for the series.


Somebody please help.


Sample vb code below.


  Dim obj As Cfx62ClientServer.chart

  nSeries = 2
  nPoints = 10
  Set obj = Chart1.Object
  With obj
  i = 0
  .OpenData COD_Values, nSeries, nPoints
  Do While (i < nSeries)
  j = 0: tmp = 0
  Do While (j < nPoints)
  tmp = tmp + (Rnd()) * 10
  .Value(i, j) = tmp
  j = j + 1
  Loop
  i = i + 1
  Loop
  .CloseData COD_Values
  .Gallery = Gallery_Area
  .Titles(0).Text = "Test chart for drop lines"
  With .Series(0)
  .Color = 882413046 ' transparent
  End With
  .Series(1).Color = 11790003
  End With

Posted Image

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...