码迷,mamicode.com
首页 > 其他好文 > 详细

highcharts 多数据+切换

时间:2014-08-05 19:10:59      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   数据   for   2014   

 

var highchartsOptions = {
        chart:{
            renderTo:‘container‘
        },
        title:{
            text:‘指标数据‘
        },
        tooltip:{
            pointFormat:‘{series.name}:<b>{point.y}</b>‘
        },
        xAxis:{
            categories:[]
        },
        yAxis:{
            title:{
                text:‘数值‘
            }
        },
        series:[]
};
    /**
    *categories:[]
    *series:[
    *         {
    *            name:‘‘
    *              data:[]
    *          }
    *        ]
    */       
         function changeHighchartsOption(categories,series){
        highchartsOptions.xAxis.categories = categories;
        highchartsOptions.series = series;    
        newHighcharts(‘line‘);
    }
    
    function newHighcharts(type){
        highchartsOptions.chart.type = type;
        new Highcharts.Chart(highchartsOptions);
    }    

bubuko.com,布布扣

 

highcharts 多数据+切换,布布扣,bubuko.com

highcharts 多数据+切换

标签:style   blog   http   color   io   数据   for   2014   

原文地址:http://www.cnblogs.com/xiaoxian1369/p/3892803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!