Points line not appearing
Posted: Mon Jun 28, 2004 12:44 am
This is probably a simple problem. I can't get my points to connect.
point1 = New Steema.TeeChart.Styles.Points(levelsChart.Chart)
'add data
For Each objReading In colReadings
point1.Add(objReading.ReadingTime, objReading.Gallons)
Next
point1.XValues.DateTime = True
point1.Marks.Visible = False
point1.ShowInLegend = True
point1.Pointer.HorizSize = 2
point1.Pointer.VertSize = 2
point1.Visible = True
point1.Color = _LevelsGraphPointsColor
point1.LinePen.Color = _LevelsGraphPointsColor
point1.LinePen.Visible = True
point1.LinePen.Width = 1
point1.LinePen.Transparency = 50
One would think that making the linepen both visible and setting its color would make it show up. Not so.
point1 = New Steema.TeeChart.Styles.Points(levelsChart.Chart)
'add data
For Each objReading In colReadings
point1.Add(objReading.ReadingTime, objReading.Gallons)
Next
point1.XValues.DateTime = True
point1.Marks.Visible = False
point1.ShowInLegend = True
point1.Pointer.HorizSize = 2
point1.Pointer.VertSize = 2
point1.Visible = True
point1.Color = _LevelsGraphPointsColor
point1.LinePen.Color = _LevelsGraphPointsColor
point1.LinePen.Visible = True
point1.LinePen.Width = 1
point1.LinePen.Transparency = 50
One would think that making the linepen both visible and setting its color would make it show up. Not so.