jQuery插件FusionCharts实现的3D柱状图效果实例【附demo源码下载】

人生坎坎坷坷,跌跌撞撞那是在所难免。但是,不论跌了多少次,你都要坚强地再次站起来。再试一次,成功一定属于你!

本文实例讲述了jQuery插件FusionCharts实现的3D柱状图效果。分享给大家供大家参考,具体如下:

1、实现源码:

<!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": "()一年收入统计",
                "xAxisName": "月份",
                "yAxisName": "收入明细",
                "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、实现效果图:

附:完整实例代码点击此处本站下载

希望本文所述对大家jQuery程序设计有所帮助。

本文jQuery插件FusionCharts实现的3D柱状图效果实例【附demo源码下载】到此结束。得意时应善待他人,正因你失意时会需要他们。小编再次感谢大家对我们的支持!