Highcharts页脚间距

时间:2013-04-17 16:48:22

标签: highcharts

使用Highcharts我想在页面下放置页脚文本。我能看到这样做的唯一方法是使用credits属性。但是长篇文章看起来很简陋。有没有办法设置信用额度以增加间距?

http://jsfiddle.net/QbEvN/

    credits: {
        position: {
            align: 'center'
        },
        text: 'this is some really long text that i am using as a footer',
        href: null
    },

2 个答案:

答案 0 :(得分:6)

如果您已经开始利用页脚的信用选项。以下是您可以根据需要使用的一些选项:

    chart: {
        marginBottom: 100 //space from axis to chart bottom
    },
    legend: {y: -20}, // position between axis and legend

    credits: {
        text: 'This is so super duper uper long text. Look at all this space!',
        position: {
            align: 'center',
            y: -5 // position of credits
        },
        style: {
            fontSize: '14pt' // you can style it!
        }
    },

小提琴here

enter image description here

答案 1 :(得分:1)

看一下标签元素:

http://api.highcharts.com/highcharts#labels

您还可以调整图表的marginBottom以提供所需的空间。