//是否格式化数字,默认为1(True),自动的给你的数字加上K(千)或M(百万);若取0,则不加K或M
graphConfig.put("formatNumberScale ", "0");
//实例化组合种类配置对象
CategoriesConfig categoriesConfig = new CategoriesConfig();
List cateList = new ArrayList();
cateList.add(new Categorie("一月"));
cateList.add(new Categorie("二月"));
cateList.add(new Categorie("三月"));
cateList.add(new Categorie("四月"));
cateList.add(new Categorie("五月"));
cateList.add(new Categorie("六月"));
cateList.add(new Categorie("七月"));
cateList.add(new Categorie("八月"));
cateList.add(new Categorie("九月"));
cateList.add(new Categorie("十月"));
cateList.add(new Categorie("十一月"));
cateList.add(new Categorie("十二月"));
categoriesConfig.setCategories(cateList);
List list = getFcfDataList4LineGroup42Y(new BaseDto());
String xmlString = FcfDataMapper.toFcfXmlData(list, graphConfig, categoriesConfig);
request.setAttribute("xmlString", xmlString);
System.out.println(xmlString);