Category / Section
How to add a series side by side?
1 min read
Series can be placed side by side or overlapped using the SideBySideSeriesPlacement property.
This is especially used when multiple HiLo type series are used in a chart. Series that get stacked and plotted in this type could be separated and placed side by side using this property.
C#
//Sets the series overlapped
chartArea.SideBySideSeriesPlacement = false;
//Sets the series side by side
chartArea.SideBySideSeriesPlacement = true;