This question is locked. New answers and comments are not allowed.
I can't figure out how to make a vertical line on the chart. Something like this that shows on the picture.
I've been working with this module:
I've been working with this module:
.CategoryAxis(axis => axis
.Title("Days")
.MajorGridLines(a => a.Visible(false))
.Categories(ViewBag.YYY))
.ValueAxis(axis => axis
.Numeric()
.Title("Issues")
.MajorGridLines(lines => lines.Visible(false))
.Min(0)
.Max(ViewBag.YYY))