Website:https://www.hcharts.cn/
The Chinese version of the (reference up convenient, you understand.) ):http://www.mamicode.com/info-detail-446038.html
Online has a lot of detailed introduction, here directly say how to use it;
Three JS plugins that must be introduced: http://download.csdn.net/detail/biexiansheng/9744829
Get started: Start by describing how to use this plugin to complete your own graphical reports
1 <!Doctype HTML>2 <HTML>3 <Head>4 <title>Use of graphical reports</title>5 <MetaCharSet= "Utf-8">6 <Scripttype= "Text/javascript"src= "Jquery.min.js"></Script>7 <Scripttype= "Text/javascript"src= "Highcharts.js"></Script>8 <Scripttype= "Text/javascript"src= "Jquery.highchartTable.js"></Script>9 <Scripttype= "Text/javascript">Ten $ (document). Ready (function(){ One $('Table.highchart'). highcharttable (); A }); - </Script> - </Head> the <Body> - <Tableclass= "Highchart"Data-graph-container-before= "1"Data-graph-type= "column"style= "Display:none"> - - + <caption>The city where it practitioners are counted</caption> - <thead> + <TR> A <th>City</th> at <th>Number</th> - <th>Wages</th> - </TR> - </thead> - <tbody> - <TR> in <TD>Beijing</TD> - <TD>10000</TD> to <TD>99999</TD> + </TR> - <TR> the <TD>Shanghai</TD> * <TD>20000</TD> $ <TD>19999</TD>Panax Notoginseng </TR> - <TR> the <TD>Shenzhen</TD> + <TD>30000</TD> A <TD>29999</TD> the </TR> + <TR> - <TD>Guangzhou</TD> $ <TD>20000</TD> $ <TD>19999</TD> - </TR> - <TR> the <TD>Zhongguancun</TD> - <TD>10000</TD>Wuyi <TD>99999</TD> the </TR> - </tbody> Wu </Table> - </Body> About </HTML>
Operating effect:
The above program, in turn, is replaced by the following to show different effects:
<table class= "Highchart" data-graph-container-before= "1" data-graph-type= "line" style= "Display:none" >
<table class= "Highchart" data-graph-container-before= "1" data-graph-type= "area" style= "Display:none" >
<table class= "Highchart" data-graph-container-before= "1" data-graph-type= "spline" style= "Display:none" >
<table class= "Highchart" data-graph-container-before= "1" data-graph-type= "pie" style= "Display:none" >
Highcharts implementation of graphical reports (I mainly implement javaweb development of graphical reports)