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

jQuery插件FusionCharts實(shí)現(xiàn)的3D柱狀圖效果實(shí)例【附demo源碼下載】

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

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

1、實(shí)現(xiàn)源碼:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>FusionCharts3D柱狀圖</title>
    <script src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="js/fusioncharts.js" ></script>
    <style>
      body,html{
        width:99%;
        height: 98%;
        font-family: "arial rounded mt bold";
        font-size: 12px;
      }
    </style>
    <script>
      $(document).ready(function(){
        FusionCharts.ready(function () {
          var column3DChart = new FusionCharts({
            type: 'column3d',
            renderAt: 'column3D',
            width: '1350',
            height: '650',
            dataFormat: 'json',
            dataSource: {
              "chart": {
                "caption": "(腳本之家)一年收入統(tǒng)計(jì)",
                "xAxisName": "月份",
                "yAxisName": "收入明細(xì)",
                "paletteColors": "#0075c2",
                "valueFontColor": "#000000",
                "baseFont": "Helvetica Neue,Arial",
                "captionFontSize": "16",
                "subcaptionFontSize": "16",
                "subcaptionFontBold": "1",
                "placeValuesInside": "0",
                "rotateValues": "1",
                "showShadow": "0",
                "divlineColor": "#999999",
                "divLineIsDashed": "1",
                "divlineThickness": "1",
                "divLineDashLen": "1",
                "divLineGapLen": "1",
                "canvasBgColor": "#ffffff"
              },
              "data": [
                {
                  "label": "(腳本之家)一月",
                  "value": "3689"
                },
                {
                  "label": "(腳本之家)二月",
                  "value": "5874"
                },
                {
                  "label": "(腳本之家)三月",
                  "value": "4512"
                },
                {
                  "label": "(腳本之家)四月",
                  "value": "6785"
                },
                {
                  "label": "(腳本之家)五月",
                  "value": "1568"
                },
                {
                  "label": "(腳本之家)六月",
                  "value": "2745"
                },
                {
                  "label": "(腳本之家)七月",
                  "value": "4758"
                },
                {
                  "label": "(腳本之家)八月",
                  "value": "9652"
                },
                {
                  "label": "(腳本之家)九月",
                  "value": "3425"
                },
                {
                  "label": "(腳本之家)十月",
                  "value": "2014"
                },
                {
                  "label": "(腳本之家)十一月",
                  "value": "3652"
                },
                {
                  "label": "(腳本之家)十二月",
                  "value": "7421"
                }
              ]
            }
          });
          column3DChart.render();
        });
      });
    </script>
  </head>
  <body>
    <div id="column3D"></div>
  </body>
</html>

2、實(shí)現(xià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)論