java - Make a Table from a TimeSeriesCollection -
i have of data stored in timeseriescollection, , instead of making graph data, want have option of presenting data in table. goal make this:
name 5/1/2013 5/2/2013 5/3/2013 ------------------------------------------- rick 12 0 82 dale 1 0 0 shane 0 0 159
how should go this? how data want out of timeseriescollection?
i need make column every possible x value in series. 5/2/2013 needs show up, though there no data it.
you can build tablemodel
around timeseriescollection
, although might more practical transpose table, identifying rows longer dimension. implementation of getvalueat()
can fill in missing data needed. reference, related example extends abstracttablemodel
return values map<string, string>
.
Comments
Post a Comment