I have following issue: I need to show multiple columns in a chart control (about seven series in one chart area). Now when I have a chart of type \"Column\" all seven columns g
Column Series has a CustomProperties named DrawSideBySide, set it to False will result columns drawing overlap.
series1.CustomProperties = "DrawSideBySide=False";
It can also be set in IDE, by going to Properties window, Series Collection Editor, then find CustomProperties, DrawSideBySide.