如何在org.moxieapps.gwt.highcharts.client.Chart上设置语言 将Highcharts.options(在Java中)设置为:
Highcharts.Options options = new Highcharts.Options();
options.setGlobal(new Global().setUseUTC(false));
String[] cat = new String[] {"Jan.", "Fev.", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Set.", "Out.", "Nov.", "Dez."} ;
options.setLang(new Lang().setMonths(cat));
Highcharts.setOptions(options);
没有效果。保持英文。
尝试设置:
chart.getXAxis()
.setCategories("Jan.", "Fev.", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Set.", "Out.", "Nov.", "Dez.");
失败: - >铬失败: V8错误:分配失败 - 进程内存不足(数组长度无效)。当前内存使用量:890 MB
- > Firefox抱怨脚本错误
即使使用以下文档的示例,也会失败:
chart.getXAxis().setCategories(....)
请帮助!
答案 0 :(得分:2)
洛尔! 我需要
options.setLang(new Lang().setShortMonths(cat));
!!!