我想将 Google Chart Area 日期显示为 2012 年 3 月、2013 年 10 月等。格式中不应有任何日期数字。我只能找到 3 种格式
格式
var formatter_long = new google.visualization.DateFormat({formatType: 'long'});
var formatter_medium = new google.visualization.DateFormat({formatType: 'medium'});
var formatter_short = new google.visualization.DateFormat({formatType: 'short'});
导致
2008 年 2 月 28 日(长)
2008 年 2 月 28 日(中)
2008 年 2 月 28 日(短)
如果我可以从结果中删除日期数字,对我来说长中型工作。有没有机会以某种方式做到这一点?