Hi,
I have 2 CategoryAxis, by Month and Year:
.CategoryAxis(axis => axis
.Date()
.Labels(l => l.Format(
"{0:MMM}"
))
.BaseUnit(ChartAxisBaseUnit.Months)
.MajorGridLines(lines => lines.Visible(false))
)
.CategoryAxis(axis => axis
.Date()
.Labels(l => l.Format(
"{0:yyyy}"
))
.BaseUnit(ChartAxisBaseUnit.Years)
.MajorGridLines(lines => lines.Visible(false))
)
Is there a way to align the Year within that Years Months. For instance currently the years are split evenly along the graph and not sitting within the Jan > Dec of the current year. See attached image.
Thanks.