Question: plot option axesfont

In the example below, the plot option axesfont affects both axes in Maple 10.06, but in Maple 11.01 it affects only the vertical axis. Is this a feature, or a bug? If it’s a feature, how can I change the font of the horizontal axis tickmarks?

restart;
dates := [0 = "21/8/00", 140 = "8/1/01", 536 = "8/2/02", 885 = "23/1/03", 1267 = "9/2/04", 1628 = "4/2/05", 2004 = "15/2/06", 2200 = "30/8/06", 2479 = "5/6/07", 2531 = "27/7/07"];
xy := [[0, 2.5], [140, 2.2], [536, 2.6], [885, 2.5], [1267, 3.3], [1628, 3.1], [2004, 5.0], [2200, 3.0], [2479, 5.9], [2531, 4.3]];
plots[pointplot](xy,symbol=circle,tickmarks=[dates,default],axesfont=[TIMES,ROMAN,8]);

Many thanks for any tips,

J. Tarr
Please Wait...