6

我有一个由 highcharts.js 创建的简单折线图。我在 x 轴 (30) 上有很多刻度线,所以我将 stagger 设置为 2 以处理水平相互重叠的标记。但是,图表末尾的 x 轴刻度标签的下一行被截断。

无论我将图表制作多高,x 轴刻度线标签的下一行都会被切断。我怎样才能增加这个区域的高度来解决这个问题?还是有其他方法?

month_chart = new Highcharts.Chart({
chart: {
    borderRadius: 0,
    height: chart_height,
    marginRight: 30,
    marginBottom: 25,
    renderTo: 'leads-by-month',
    type: 'line',
},
title: {
    text: 'Past 30 Days',
},
xAxis: {
    categories: [<?php print $bymonth_categories; ?>],
    labels: {
        staggerLines: 2,
    },
},
yAxis: {
    title: {
        text: 'Leads',
        style: {color: '#3d3e41', }
    },
    plotLines: [{
        value: 0,
        width: 1,
        color: '#808080'
    }],
    min: 0,
},
plotOptions: {
    line: {
        color: '#578df1',
        dataLabels: {
            enabled: true,
            color: '#3d3e41',
        },
        enableMouseTracking: false
    }
},
legend: {
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'top',
    x: -100,
    y: 74,
    floating: true,
    borderWidth: 1,
    backgroundColor: '#FFFFFF',
    shadow: true
},
series: [{
    name: '<?php print $organization['name']; ?>',
    data: [<?php print $bymonth_data; ?>]
}]
        });
4

1 回答 1

11

只需提高marginBottom选项。默认值为 70,这对于 2 行刻度标签应该足够了,但您已将其设置为 25,但不是。

于 2012-07-10T23:35:26.627 回答