Dashboard Time Series Chart

Time Series is similar to XY Series chart. The only difference is the first X axis represents a Date or Time value. The Second column represents the Y value. Similarly you can add multiple series by adding more columns to the query

select date(payment_date),sum(amount) from payment
group by date(payment_date)
order by payment_date asc

Image

Excel Dashboard           OR           Access Dashboard

  1. 2 Trackback(s)

  2. Sep 29, 2008: Dashboard Time Series Chart | Dashboard Examples - Samples - Tutorials
  3. Oct 21, 2008: Dashboard Time Series Chart | Dashboard Examples - Samples - Tutorials

Post a Comment