Invient Charts CategoryAxis Padding

Hello,

I’m using Invient Charts and after setting the xAxis i’ve noticed that there is a small padding between the plot and the yAxis as this image describes:

This is how i create my xAxis:


CategoryAxis xAxis = new CategoryAxis();
List<String> lista = new ArrayList<String>();
	    
DateFormat formatter = new SimpleDateFormat("MMM yyyy", Factory.getCurrentLocale()); 
String s = null;
	    
for (Date d : timeInterval){
	   s = formatter.format(d);
	    lista.add(s);
}
	    
xAxis.setCategories(lista);
LinkedHashSet<XAxis> xAxesSet = new LinkedHashSet<InvientChartsConfig.XAxis>();
xAxesSet.add(xAxis);
chartConfig.setXAxes(xAxesSet);	

I would be very appreciated if someone told me how can i get rid of that space/padding.

Thank you in advance.

Regards