nicoespeon / trello-kanban-analysis-tool

💤 [Not maintained] Analyse Kanban metrics from a Trello board -
http://nicoespeon.com/trello-kanban-analysis-tool/
MIT License
114 stars 33 forks source link

Export data to CSV #22

Closed nicoespeon closed 8 years ago

nicoespeon commented 8 years ago

Someone suggested to be able to export graph data into a CSV so we can replicate the report in spreadsheets.


What we would need:

return {
  // … drivers
  exportToCsv: Observable.withLatestFrom(
    clicks$,
    trelloData$.map(parseToCsvData),
    (clicks, data) => data
  )
}