W
waynehirata
I have quarterly data and my category labels look like this:
01/04 04/04 07/04 10/04
I would prefer labels:
03/04 06/04 09/04 12/04
Notice I want each quarter labeled with the last month, not the first
month.
Here is some code:
ax.NumberFormat="mm/yy"
ax.GroupingType = c.chAxisGroupingManual
ax.GroupingUnitType = c.chAxisUnitMonth
ax.GroupingUnit = 3
ax.TickLabelUnitType = c.chAxisUnitMonth
ax.TickMarkUnitType = c.chAxisUnitMonth
ax.TickMarkSpacing = 3
I have tried various combinations of
GroupingType,TickLabelUnitType,Spacing AND Month,Quarter.
Thanks for any help.
01/04 04/04 07/04 10/04
I would prefer labels:
03/04 06/04 09/04 12/04
Notice I want each quarter labeled with the last month, not the first
month.
Here is some code:
ax.NumberFormat="mm/yy"
ax.GroupingType = c.chAxisGroupingManual
ax.GroupingUnitType = c.chAxisUnitMonth
ax.GroupingUnit = 3
ax.TickLabelUnitType = c.chAxisUnitMonth
ax.TickMarkUnitType = c.chAxisUnitMonth
ax.TickMarkSpacing = 3
I have tried various combinations of
GroupingType,TickLabelUnitType,Spacing AND Month,Quarter.
Thanks for any help.