4

使用 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
    },
4

2 回答 2

7

如果您决心利用页脚的信用选项。您可以根据需要使用以下选项来分隔它:

    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!
        }
    },

在这里拉小提琴。

在此处输入图像描述

于 2013-04-17T17:38:36.180 回答
1

看一下标签元素:

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

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

于 2013-04-17T17:04:18.533 回答