Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
breakoutModefull-width
languagesql
select to_char(dd, 'dd/MM HH:MI Day') as "Time", (
  select cumulative from cumulative where start < dd and dd < now()
  order by start desc limit 1) as "Story Points"
from generated_sprint_border_series 
Info

We format the date to string in a certain way to specify the Days of Week as it is important for reading the Burndown Chart

Example of the output:

...

Full Code Recap

...