Exemplo n.º 1
0
        public ActionResult ArtistsPerMonth(DateTime?cutoff = null)
        {
            cutoff = cutoff ?? DefaultMinDate;

            var values = queries.ArtistsPerMonth(cutoff);

            var points = values.ToDatePoints();

            return(DateLineChartWithAverage("Active artists per month", "Artists", "Number of artists", points, true));
        }