Highcharts 条形图

var options = {
	chart: {
            type: 'bar',
        renderTo:'container'
        },
        title: {
            text: 'Historic World Population by Region'
        },
        subtitle: {
            text: 'Source: Wikipedia.org'
        },
        xAxis: {
            categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
            title: {
                text: null
            }
        },
        yAxis: {
            min: 0,
            title: {
                text: 'Population (millions)',
                align: 'high'
            },
            labels: {
                overflow: 'justify'
            }
        },
        tooltip: {
            valueSuffix: ' millions'
        },
        plotOptions: {
            bar: {
                dataLabels: {
                    enabled: true
                }
            }
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'top',
            x: -40,
            y: 100,
            floating: true,
            borderWidth: 1,
            backgroundColor: '#FFFFFF',
            shadow: true
        },
        credits: {
            enabled: false
        },
        series: [{
            name: 'Year 2008',
            data: [973, 914, 4054, 732, 340]
        }]


};

$(document).ready(function(){
	var chart = new Highcharts.Chart(options);

	$("button.change").click(function(){
		chart.xAxis[0].setCategories(['1', '2', '3', '4', '5']);
		chart.series[0].setData([673, 214, 404, 752, 440]);
	});
});


你可能感兴趣的:(Highcharts 条形图)