0

I have a .Net chart where a series is bound to DataTable using .XValueMember and .YValueMember with series ChartType = Line. I would like to prevent a line being drawn between 2 specified sequential items in the DataTable. Is this possible without creating multiple series, and if so,how can I do this?

SimonKravis
  • 553
  • 1
  • 3
  • 24

1 Answers1

0

Workaround is to overlay another series with points corresponding to the coordinates of the sequential items using the chart background color, so the section of the line between the items is not visible.

SimonKravis
  • 553
  • 1
  • 3
  • 24