We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

How I can overlap the columns in a column chart?

Hi Guys,

How I can overlap the columns in a column chart?

Thanks.
Greetings

2 Replies

AC Alvaro Corral July 11, 2016 08:25 PM UTC

If you put the width bigger, you get the result.


YP Yuvaraj Palanisamy Syncfusion Team July 12, 2016 01:31 PM UTC

Hi Alvaro Corral,  
   
Thanks for contacting Syncfusion support.  
   
It is possible to adjust the column width and space between the segments using Width and Spacing properties of ColumnSeries. The default value of Width is 0.8 and Spacing is 0.2.  
   
Code Example [C#]:  
   
ColumnSeries series1 = new ColumnSeries();  
series1.Width = 0.2;  
series1.Spacing = 0.7;  
chart.Series.Add(series1);  
   
ColumnSeries series2 = new ColumnSeries();  
series2.Width = 0.2;  
series2.Spacing = 0.7;  
chart.Series.Add(series2);  
     
Thanks,  
Yuvaraj 


Loader.
Live Chat Icon For mobile
Up arrow icon