row.setNumCols(3);
row.setColWidths(65, "*", 100);
row.setWidth100();
row.setAutoHeight();
row.setOverflow(Overflow.VISIBLE);
HTMLFlow graph = new HTMLFlow();
String contents = "<span id='sparkline_" + index + "' class='dynamicsparkline' width='0' " + "values='"
+ commaDelimitedList.substring(0,commaDelimitedList.lastIndexOf(",")) + "'>...</span>";
graph.setContents(contents);
graph.setContentsType(ContentsType.PAGE);
//disable scrollbars on span
graph.setScrollbarSize(0);
CanvasItem graphContainer = new CanvasItem();
graphContainer.setShowTitle(false);
graphContainer.setHeight(16);
graphContainer.setWidth(60);