I'm programmatically adding multiple series to a chart where the categories represent yearly values. For each series the yearly values will be sequential, but not all series will contain all of the years.
e.g.
series 1: 2015, 2016, 2017
series 2: 2014, 2015, 2016
so when I add them to the chart, I will end up with 2015, 2016, 2017, 2014.
I know the overall year range in advance, and I would like to be able to manually add the "year" categories to the axis. I found a categories property on the categorical axis but does not appear to be any way to manipulate it.


