其他分享
首页 > 其他分享> > jquery图表统计插件-highcharts详解

jquery图表统计插件-highcharts详解

作者:互联网

代码实例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><body style="">
    <div id="container" style="width: 100%; height: 500px;">

问题:

如何去掉右下角的http:// www.highcharts.com标识:

在highcharts.js中找到:
-----------------------------------------------   credits: {
        enabled: true,
        text: 'Highcharts.com',
        href: 'http://www.highcharts.com',
        position: {
            align: 'right',
            x: -10,
            verticalAlign: 'bottom',
            y: -5
        }===============================================
只要改掉这个地方就行了,或者直接取消,enabled:false
    或者
===============================================
    text: 'yourself.com',
    href: 'http://www.yourself.com',

  ----------------------------------------------


标签:jquery,插件,http,text,www,yourself,com,highcharts
来源: https://blog.51cto.com/u_2870645/2850121