i take it back, it's not a bug. you just have to do this:
TheLine.IconAppearance.PE.ElementType = PaintElementType.SolidFill
this looks like a bug on our part, but you can easily work around it by adding this event handler:
void ultraChart1_ChartDrawItem(object sender, ChartDrawItemEventArgs e) { PointSet pS = e.Primitive as PointSet; if (pS != null) { pS.PE.StrokeOpacity = 0; } }