It would probably be less efficient. What you *may* be able to get to work is something like this:
1) draw the table
2) create sparklines
3) copy the contents of the sparkline cells back into the DataTable *before* any sorting occurs
ie, if the sparklines are in the second column, you could try this:
// nth-child is 1-indexed, so second cell is 2, not 1
var cells = $('#table').find('td.google-visualization-table-td:nth-child(2)');
for (var i = 0; i < cells.length; i++) {
data.setFormattedValue(i, 1, $(cells[i]).html());
}
You will probably need to have the allowHTML option set to true to make it work.