Segment space

Hi

When setting a chart with multiple series (of columns for example), the grouped columns appear one besides the other without any spacing between them. The space is only between categories.

I saw in WPF an option for SegmentSpace but I didn't see any equivalent in Vue.
Is there such option? If not, is it possible to add it?
Thanks


3 Replies 1 reply marked as answer

SM Srihari Muthukaruppan Syncfusion Team July 27, 2020 09:52 AM UTC

Hi Amos, 
  
We have analyzed your query. From that, we would like to let you know that we can achieve your requirement by using columnSpacing property in the chart. We have also prepared a sample for your reference. Please find the below code snippet and screenshot. 
  
  
Code Snippet: 
 App.vue: 
      
<ejs-chart > 
    <e-series-collection> 
           <e-series :dataSource='seriesData' type='Column' columnSpacing='0.1' xName='x' yName='y' > </e-series> 
           <e-series :dataSource='seriesData1' type='Column' columnSpacing='0.1' xName='x' yName='y' > </e-series> 
           <e-series :dataSource='seriesData2' type='Column' columnSpacing='0.1' xName='x' yName='y' > </e-series> 
    </e-series-collection> 
</ejs-chart> 
  
Screenshot: 
 
  
If still, this is not your exact requirement. kindly revert us with more information which will be helpful for further analysis and provide you solution sooner. 
  
Regards,
Srihari 


Marked as answer

AM Amos July 27, 2020 01:47 PM UTC

Thanks, works!


SM Srihari Muthukaruppan Syncfusion Team July 28, 2020 06:21 AM UTC

Hi Amos,  
  
Most welcome. Kindly get in touch with us, if you would require further assistance. We are always happy in assisting you.    
    
Thanks,    
Srihari M  


Loader.
Up arrow icon