Link

Cards

Demo

Cards can be created from the Element Factory.

elementFactory.reportCard(String cardTitle, String cardBody);

Basic Sample

// Create a Report
Report report = new Report("Report Cards Sample");

// Create an Element Factory
ElementFactory elementFactory new ElementFactory();

// Add a Card to your Report
report.add(elementFactory.reportCard("Time Taken to Process", "20 ms"));

// Export your Report
report.export("samples/reportCards.html");