index.html
1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<div id="newchartlist" class="page out" data-title="图表插件(新)">
	<div id="newchartlist-header"></div>
	<div id="newchartlist-a"></div>
    
    <script>
        require(["NavHeader", "Navigation"], function(NavHeader, Navigation) {
        	new NavHeader({
        		el: "newchartlist-header",
        		option: {
        			title:"图表插件(新)", 
        			smallTitle:"图表插件(新)Demo"
        		}
        	}).render();
        	
       		new Navigation({
        		el: "newchartlist-a",
        		option: {
        			items : [
     	     			{	
     	     				text:"柱状图",
    	    				icon:"/mobilemode/mobile/demo/plugin/NewChart/images/barchart.png",
    	    				url:"/mobilemode/mobile/demo/plugin/BarChart/demo.html"
    	    			},
    	    			{	
    	    				text:"折线图",
    	    				icon:"/mobilemode/mobile/demo/plugin/NewChart/images/areachart.png",
    	    				url:"/mobilemode/mobile/demo/plugin/LineChart/demo.html"
    	    			},
    	    			{	
    	    				text:"饼状图",
    	    				icon:"/mobilemode/mobile/demo/plugin/NewChart/images/piechart.png",
    	    				url:"/mobilemode/mobile/demo/plugin/PieChart/demo.html"
    	    			},
    	    			{	
    	    				text:"漏斗图",
    	    				icon:"/mobilemode/mobile/demo/plugin/NewChart/images/filter.png",
    	    				url:"/mobilemode/mobile/demo/plugin/FunnelChart/demo.html"
    	    			},
    	    			{	
    	    				text:"雷达图",
    	    				icon:"/mobilemode/mobile/demo/plugin/NewChart/images/radarchart.png",
    	    				url:"/mobilemode/mobile/demo/plugin/RadarChart/demo.html"
    	    			},
    	    			{	
    	    				text:"仪表盘",
    	    				icon:"/mobilemode/mobile/demo/plugin/NewChart/images/gaugechart.png",
    	    				url:"/mobilemode/mobile/demo/plugin/GaugeChart/demo.html"
    	    			}
    	    		]
       			},
       			badge : []
        	}).render();
        	
            
        });
    </script>
</div>