JavaScript displays data as pie, histogram, and line charts

Source: Internet
Author: User

This article is an example of the display histogram, of course, this is only a method, there are many ways to display the chart, such as custom chart labels, using Jfreechart plug-ins, etc.;

1, Import JS file, contains a lot of presentation methods:

<script type= "Text/javascript" Src=<select:link page= "/js/chartobject.js"/>></script><script Type= "Text/javascript" Src=<select:link page= "/js/fusioncharts.js"/>></script>

2, from the background to obtain data:

function init () {            var name3= "<%=request.getattribute (" Accountlist.name ")%>";         var value3= "<%=request.getattribute (" Accountlist.values ")%>";         var rate3= "<%=request.getattribute (" ACCOUNTLIST.VALUESHB ")%>";        SHOWCHART4 (name3,rate3);             // ShowChart3 (Name3,value3, "");       }

3. Assign the data to the legend:

functionShowChart4 (names,values) {varChartobj =Newchartobject (); varXmlstring= ""; Chartobj.caption= "Vehicle Sales ratio chart for each carrier unit"; Chartobj.showvalues= ' 0 '; Chartobj.showlabels= ' 1 '; Chartobj.snumbersuffix= '%25 '; XMLString= Chartobj.createdualymscolumnxmlbyvalues (Names,values, "", "sales ratio = Cigarette sales% vehicle capacity;", "" "); varChart =NewFusioncharts ("charts/mscolumn3dlinedy.swf", "ChartId2", "1000", "230", "0", "0");         Chart.setdataxml (xmlstring); Chart.render ("ChartDiv2"); }

The following flash is used:

4. Just write in the JSP page:

<div style= "MARGIN-TOP:3PX;MARGIN-LEFT:3PX;" ><span id= "ChartDiv2" style= "width:100%;" ></span></div>

5. The results appear as follows:

JavaScript displays data as pie, histogram, and line charts

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.