8

我正在为旋转的 x 轴标签而苦苦挣扎。如果它们长于 5-6 个字符,它们会与图表重叠,如您在此处看到的那样:http: //jsfiddle.net/kmfT9/215/ 如果未显示,您可以在 jsfiddle 中重现粘贴以下代码的错误窗户。

var chart = new Highcharts.Chart({

chart: {
renderTo: 'container',
marginLeft: 120
},

xAxis: {
categories: ['Jan', '02/03/2011', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], labels : { y : 20, rotation: -45 }
},

yAxis: {
lineWidth: 1,
offset: 0,
labels : { x: -20 },
title: {
text: 'Primary Axis'
},
tickWidth: 1
},

series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]

});

即使在标签属性上设置 y 值,这也仅适用于较小的标签。

任何人都知道解决方案或我做错了什么?

4

2 回答 2

18

您可以尝试将 align: 'right' 添加到 x 轴标签对象。

例如

xAxis:{类别:['Jan','02/03/2011','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct', 'Nov', 'Dec'], 标签:{ y : 20, rotation: -45, align: 'right' } },
于 2011-03-17T12:58:10.797 回答
0

有时您必须按照客户的意愿去做,我知道下面的方法不是最好的方法,但可能会对某人有所帮助)。据我所知,HighCharts 使用两种方式来可视化图表。它是SVG(例如受支持的 Chrome、IE > 8 浏览器)和VML(受 IE <=8 支持)。因此,每种方式都包含可以通过软中断解决此问题的点。

要在 SVG 中解决它,您必须找到 buildText 函数并在此时修改:

// check width and apply soft breaks
if (width) {
...
}

例如添加新的单独符号:

...
var words = span.replace(/\\/g, '\\ ').replace(/-/g, '- ').split(' '),
...
tspan.appendChild(doc.createTextNode(words.join(' ').replace(/\\ /g, '\\').replace(/- /g, '-')));
...

如果你想让它在 VML 中工作成为可能。您可以编写自己的函数,使其与 buildText 函数中的代码相同:

function softBreaks()
        {
            //if ie and vml
            hasSVG = !!document.createElementNS && !!document.createElementNS("http://www.w3.org/2000/svg", "svg").createSVGRect;
            if(!hasSVG)
            {
                //for each
                $.each($('.highcharts-axis > span > div'), function(index, value) {

                    var width = value.parentNode.style.posWidth;
                    var div = value;
                    if (width) {
                        var words = value.innerText.replace(/\//g, '/ ').replace(/\\/g, '\\ ').replace(/\./g, '. ').replace(/-/g, '- ').split(' '),
                        tooLong,
                        actualWidth,
                        rest = [];

                        while (words.length || rest.length) {

                            //actualWidth = value.parentNode.offsetWidth;
                            actualWidth = value.parentNode.scrollWidth; 
                            tooLong = actualWidth > width;

                            if (!tooLong || words.length === 1) { // new line needed
                                words = rest;
                                rest = [];
                                if (words.length) {
                                    div = document.createElement("div");
                                    value.parentNode.appendChild(div);
                                    if (actualWidth > width) { // a single word is pressing it out
                                        width = actualWidth;
                                    }
                                }
                            } else {
                                div.removeChild(div.firstChild);
                                rest.unshift(words.pop());
                            }
                            if (words.length) {
                                div.appendChild(document.createTextNode(words.join(' ').replace(/\/ /g, '/').replace(/\\ /g, '\\').replace(/\. /g, '.').replace(/- /g, '-')));
                            }
                        }
                    }
                });
            }
        }

在此之后,您必须在图表加载 www.highcharts.com/ref/#chart-events--load 时调用此函数(对不起,我是新用户)。如果页面上有多个图表,您可以将图表 ID 作为参数传递给 softBreaks() 函数。

于 2011-09-21T11:29:18.770 回答