您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > jQuery特效 >

    jQuery混合图表数据统计代码

    时间:2014-07-23 08:13 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表

    jQuery混合图表数据统计代码jQuery混合图表数据统计代码是一款jquery.highcharts.js柱状图,曲线图,饼图混合图表数据统计代码。jQuery柱状图曲线图饼图

    <script type="text/javascript">
    $(function () {                                                               
        $('#container').highcharts({                                          
            chart: {                                                          
            },                                                                
            title: {                                                          
                text: '折线,饼状,条状综合图'                                     
            },  
    //x轴
            xAxis: {                                                          
                categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
            },                                                                
            tooltip: {                                                        
                formatter: function() {                                       
                    var s;                                                    
                    if (this.point.name) { // the pie chart                   
                        s = ''+                                               
                            this.point.name +': '+ this.y +' fruits';         
                    } else {                                                  
                        s = ''+                                               
                            this.x  +': '+ this.y;                            
                    }                                                         
                    return s;                                                 
                }                                                             
            },                                                                
            labels: {                                                         
                items: [{                                                     
                    html: 'Total fruit consumption',                          
                    style: {                                                  
                        left: '40px',                                         
                        top: '8px',                                           
                        color: 'black'                                        
                    }                                                         
                }]                                                            
            },                                                                
            series: [{                                                        
                type: 'column',                                               
                name: 'Jane',                                                 
                data: [3, 2, 1, 3, 4]                                         
            }, {                                                              
                type: 'column',                                               
                name: 'John',                                                 
                data: [2, 3, 5, 7, 6]                                         
            }, {                                                              
                type: 'column',                                               
                name: 'Joe',                                                  
                data: [4, 3, 3, 9, 0]                                         
            }, {                                                              
                type: 'spline',                                               
                name: 'Average',                                              
                data: [3, 2.67, 3, 6.33, 3.33],                               
                marker: {                                                     
                lineWidth: 2,                                               
                lineColor: Highcharts.getOptions().colors[3],               
                fillColor: 'white'                                          
                }                                                             
            }, {                                                              
                type: 'pie',                                                  
                name: 'Total consumption',                                    
                data: [{                                                      
                    name: 'Jane',                                             
                    y: 13,                                                    
                    color: Highcharts.getOptions().colors[0] // Jane's color  
                }, {                                                          
                    name: 'John',                                             
                    y: 23,                                                    
                    color: Highcharts.getOptions().colors[1] // John's color  
                }, {                                                          
                    name: 'Joe',                                              
                    y: 19,                                                    
                    color: Highcharts.getOptions().colors[2] // Joe's color   
                }],                                                           
                center: [100, 80],                                            
                size: 100,                                                    
                showInLegend: false,                                          
                dataLabels: {                                                 
                    enabled: false                                            
                }                                                             
            }]                                                                
        });                                                                   
    });                                                                              
    </script>

    jQuery混合图表数据统计代码由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/jQuerytexiao/9847.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!