I am new to Vaadin and writing my first set of screens so please bare with my naive questions. How do I make the caption for a table as bold and alter the size for the same?
Regards,
Vipul
Code is
myProjectsTable = new Table(“My Projects”);
myProjectsTable.setWidth(80, Sizeable.UNITS_PERCENTAGE);
myProjectsTable.setHeight(90, Sizeable.UNITS_PERCENTAGE);
myProjectsTable.addContainerProperty(“Project”, String.class, null);
myProjectsTable.addContainerProperty(“Prod Version”, String.class, null);