欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jQuery插件HighCharts實(shí)現(xiàn)的2D條狀圖效果示例【附demo源碼下載】

 更新時(shí)間:2017年03月15日 10:40:16   作者:翱翔天地  
這篇文章主要介紹了jQuery插件HighCharts實(shí)現(xiàn)的2D條狀圖效果,結(jié)合完整實(shí)例形式詳細(xì)分析了jQuery插件HighCharts繪制2D條狀圖的操作步驟與相關(guān)屬性設(shè)置技巧,并附帶demo源碼供讀者下載參考,需要的朋友可以參考下

本文實(shí)例講述了jQuery插件HighCharts實(shí)現(xiàn)的2D條狀圖效果。分享給大家供大家參考,具體如下:

1、實(shí)例代碼:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HighCharts 2D條狀圖</title>
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/highcharts.js"></script>
<script type="text/javascript">
$(function(){
   $('#barChart').highcharts({
     chart: {
       type: 'bar'
     },
     title: {
       text: '2014年某一周水果銷售量'
     },
     subtitle: {
       text: ''
     },
     xAxis: {
       categories: ['星期一', '星期二', '星期三', '星期四', '星期五','星期六','星期日'],
       title: {
         text: '星期'
       }
     },
     yAxis: {
       min: 0,
       title: {
         text: '數(shù)量',
         align: 'high'
       },
       labels: {
         overflow: 'justify'
       }
     },
     tooltip: {
       valueSuffix: ' kg'
     },
     plotOptions: {
       bar: {
         dataLabels: {
           enabled: true
         }
       }
     },
     legend: {
       layout: 'vertical',
       align: 'right',
       verticalAlign: 'top',
       x: -40,
       y: 100,
       floating: true,
       borderWidth: 1,
       backgroundColor: '#CCCCCC',
       shadow: true
     },
     credits: {
       enabled: true
     },
     series: [{
       name: '蘋果',
       data: [1070, 3198, 6353, 2035, 8745]
     }, {
       name: '橘子',
       data: [9330, 1560, 9470, 4080, 6784]
     }, {
       name: '梨子',
       data: [2735, 9140, 4054, 7329, 3478]
     }]
   });
 });
</script>
</head>
<body>
  <div id="barChart" style="width: 1200px; height: 550px; margin: 0 auto"></div>
</body>
</html>

2、運(yùn)行效果圖如下:

附:完整實(shí)例代碼點(diǎn)擊此處本站下載。

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery常用插件及用法總結(jié)》、《jquery中Ajax用法總結(jié)》、《jQuery表格(table)操作技巧匯總》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常見經(jīng)典特效匯總》及《jquery選擇器用法總結(jié)

希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論