dataTable.setValue(4, 1, -27);
dataTable.setFormattedValue(3, 1, "3.333");
assertEquals("3.333", dataTable.getFormattedValue(3, 1));
Options options = Options.create();
options.setBase(6);
BarFormat formatter = BarFormat.create(options);
formatter.format(dataTable, 1);
}
});
}