This new feature makes the existing JasperReports and Barbecue integration available in DynamicJasper.
In the following example, we are adding a bar code column (the last one)
FastReportBuilder drb = new FastReportBuilder();
drb.addColumn("State", "state", String.class.getName(),20)
.addColumn("Branch", "branch", String.class.getName(),30)
.addColumn("Quantity", "quantity", Long.class.getName(),60,true)
.addColumn("Amount", "amount", Float.class.getName(),70,true)
.addBarcodeColumn("Bar-Code", "amount", Long.class.getName(), BarcodeTypes.USD3, true, false,null, 100, true, ImageScaleMode.FILL, null)
.addGroups(1)
.setDetailHeight(30)
.setTitle("November 2006 sales report")
.setSubtitle("This report was generated at " + new Date())
.setUseFullPageWidth(true);
DynamicReport dr = drb.build();
In this code, the key call is
.addBarcodeColumn( <column title>, <property>, <class>,
<barcode type>, <show text>, <checksum>,
<application identifier>, <width>, <fixed column>,
<fill mode>, <style> )
Where
This code generate a report like this:

Refer to BarcodeColumnReportTest.html for a working example.