SimpleGraph-Excel: Difference between revisions

From BITPlan Wiki
Jump to navigation Jump to search
No edit summary
Line 15: Line 15:
= Mental Model =
= Mental Model =
<uml>
<uml>
  hide circle
   class Workbook {  
   class Workbook {  
     name
     name
Line 24: Line 25:
     rownumber
     rownumber
   }
   }
   class Column {
   class Cell {
     columnnumber
     columnnumber
     value
     value
Line 31: Line 32:
   Sheet "1" -> "title 1" Row
   Sheet "1" -> "title 1" Row
   Sheet "1" -> "n" Row
   Sheet "1" -> "n" Row
   Row "1" -> "n" Column
   Row "1" -> "n" Cell
</uml>
</uml>
= Links =
= Links =
* https://stackoverflow.com/questions/tagged/poi
* https://stackoverflow.com/questions/tagged/poi

Revision as of 18:23, 27 February 2018