Is there a way to only display specific months, in my case 1-4 which is representing the quarters instead of actual months due to how the data is inserted into the database? I have the following in the categoryAxis but it is still displaying all of the months. I can put in [3] for the months but then it goes 1, 4, 7, 10 instead of 1, 2, 3, 4. The database will only ever have 1-4 as a quarter and then the year and so I am attempting to limit the display to only the data that will be inserted.
categoryAxis: [
{
field: "Fiscal",
type: "date",
maxDateGroups: 4,
autoBaseUnitSteps: {
days: [],
weeks: [],
months: [1,4]
},
baseUnit: "months",
labels: {
dateFormats: {
months: "MM/yy"
}
}
}
],