• js双轴柱状图


    <!doctype html>
    <html lang="en">
    <head>
    <script type="text/javascript" src="js/httpcdn.hcharts.cnjqueryjquery-1.8.3.min.js"></script>  //http://www.hcharts.cn/demo/index.php?p=27 有对应的js
    <script type="text/javascript" src="js/httpcdn.hcharts.cnhighchartshighcharts.js"></script>     //http://www.hcharts.cn/demo/index.php?p=27 有对应的js
    <script type="text/javascript" src="js/httpcdn.hcharts.cnhighchartsexporting.js"></script>      //http://www.hcharts.cn/demo/index.php?p=27 有对应的js
    <script>
    //左侧Javascript代码
    $(function () {
    $('#container').highcharts({

    chart: {
    type: 'column'
    },

    title: {
    text: '源客户数、新创建客户数'
    },

    xAxis: {
    //tickInterval: 1
    categories: ['电商系统', 'SCRM系统', 'vivo帐户系统', '电子保卡系统'],
    title: {
    text: null
    }
    },

    yAxis: [{
    type: 'logarithmic',
    minorTickInterval: 1,
    title: {
    text: '新建比率' ,
    style: {
    color: '#666666'
    }
    },
    labels: {
    format: '{value} %',
    style: {
    color: '#666666'
    }
    }
    },
    { // Secondary yAxis
    title: {
    text: '源客户数 人' ,
    style: {
    color: '#4572A7'
    }
    },
    labels: {
    format: '{value} 人',
    style: {
    color: '#4572A7'
    }
    },
    opposite: true
    }],

    tooltip: {
    shared: true,
    //headerFormat: '<b>{series.name}</b><br />',
    //pointFormat: 'x = {point.x}, y = {point.y}'
    },

    series: [
    {
    name: '源客户数(人)',
    color: '#4572A7',
    type: 'column',
    yAxis: 1,
    data: [20000,50000,80000,30000],
    tooltip: {
    valueSuffix: ' 人'
    }

    },
    {
    name: '新建比率(%)',
    color: '#666666',

    data: [50.00,80.00,37.50,3.33],
    pointStart: 0,
    tooltip: {
    valueSuffix: ' %'
    },

    //type: 'spline',   //折线图
    type: 'column',   //柱形图
    marker: {
    lineWidth: 2,
    lineColor: Highcharts.getOptions().colors[3],
    fillColor: 'white' }
    }
    //{
    // data: [0, 2, 4, 8, 16, 32, 64],
    // pointStart: 0
    //},
    ]
    });
    });
    </script>
    </head>
    <body>
    <div id="container" style="min-700px;height:400px"></div>
    </body>
    </html>

  • 相关阅读:
    MySQL ——索引原理与慢查询优化(Day45)
    mysql 练习题(Day44)
    MySQL 多表查询(Day43)
    MySQL 单表查询(Day42)
    MySQL -表完整性约束(Day41)
    回调函数
    进程池
    共享数据, 信号量(了解),事件(了解)
    管道
    python并发编程之多进程
  • 原文地址:https://www.cnblogs.com/zigewb/p/4549795.html
Copyright © 2020-2023  润新知