Extjs 4 產生餅狀圖執行個體

來源:互聯網
上載者:User

標籤:java   extjs 4.2   jsp   執行個體   servlet   

前台:

//遠程讀取裝置去向圖表資料var Store1 = new Ext.data.Store({<span style="white-space:pre"></span>proxy:{<span style="white-space:pre"></span>type:'ajax',<span style="white-space:pre"></span>url:'/newmaterial/servlet/GetCountChartGoDatas',<span style="white-space:pre"></span>reader:{<span style="white-space:pre"></span>type:'array'<span style="white-space:pre"></span>}<span style="white-space:pre"></span><span style="white-space:pre"></span>},<span style="white-space:pre"></span>fields:[<span style="white-space:pre"></span>"System",<span style="white-space:pre"></span>{name:"Share",type:"float"}<span style="white-space:pre"></span>]});Store1.load();var mychart1 = new Ext.chart.Chart({<span style="white-space:pre"></span>store:Store1,<span style="white-space:pre"></span>title:'全部物料去向概覽',<span style="white-space:pre"></span>width:500,<span style="white-space:pre"></span>height:500,<span style="white-space:pre"></span>insetPadding:50,<span style="white-space:pre"></span>legend:{position:"right"},<span style="white-space:pre"></span>series:[{<span style="white-space:pre"></span>type:'pie',<span style="white-space:pre"></span>field:'Share',<span style="white-space:pre"></span>showInLegend:true,<span style="white-space:pre"></span>highlight:{<span style="white-space:pre"></span>segment:{margin:20}<span style="white-space:pre"></span>},<span style="white-space:pre"></span>label:{<span style="white-space:pre"></span>field:'System',<span style="white-space:pre"></span>display:'rotate',<span style="white-space:pre"></span>contrast:true<span style="white-space:pre"></span>},<span style="white-space:pre"></span>tips:{<span style="white-space:pre"></span>trackMouse:true,<span style="white-space:pre"></span>renderer:function(rec,item){<span style="white-space:pre"></span>this.update(rec.get("System")+':'+rec.get("Share")+'%');<span style="white-space:pre"></span>}<span style="white-space:pre"></span>}<span style="white-space:pre"></span><span style="white-space:pre"></span>}]});

後台:

public class GetCountChartGoDatas extends HttpServlet {/** * @Fields serialVersionUID : */private static final long serialVersionUID = 1L;/** * The doGet method of the servlet. <br> *  * This method is called when a form has its tag value method equals to get. *  * @param request *            the request send by the client to the server * @param response *            the response send by the server to the client * @throws ServletException *             if an error occurred * @throws IOException *             if an error occurred */public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {request.setCharacterEncoding("utf-8");response.setContentType("text/html");StringBuffer sb = new StringBuffer();NowmaterialDAO nmd = new NowmaterialDAO();MaterialDAO md = new MaterialDAO();List getlist = nmd.getSession().createCriteria(Nowmaterial.class).setProjection(Projections.projectionList().add(Projections.rowCount()).add(Projections.groupProperty("material.msCode"))).list();int total = 0;for (int i = 0; i < getlist.size(); i++) {Object[] row = (Object[]) getlist.get(i);total = total + Integer.parseInt(row[0].toString());}response.setCharacterEncoding("utf-8");sb.append("[");for (int i = 0; i < getlist.size(); i++) {Object[] row = (Object[]) getlist.get(i);List<Material> getonelist = md.findByProperty("msCode", row[1]);sb.append("['" + getonelist.get(0).getMsName() + "',"+ Float.parseFloat(row[0].toString()) + "],");}sb.append("]");int qu = sb.lastIndexOf(",");sb.deleteCharAt(qu);response.getWriter().print(sb.toString());}/** * The doPost method of the servlet. <br> *  * This method is called when a form has its tag value method equals to * post. *  * @param request *            the request send by the client to the server * @param response *            the response send by the server to the client * @throws ServletException *             if an error occurred * @throws IOException *             if an error occurred */public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {doGet(request, response);}}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.