assertEquals("3.333", dataTable.getFormattedValue(3, 1));
Options options = Options.create();
options.setBase(6);
ArrowFormat formatter = ArrowFormat.create(options);
formatter.format(dataTable, 1);
// TODO(zundel): I commented out this assert - it is breaking the tests
// and is undocumented so I don't know how to fix it.
// assertEquals("google-visualization-table-arrow-dr",
// dataTable.getProperty(1, 1, "__td-class"));
}