我正在努力使用旋转的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]
}]
});
即使在labels属性上设置y值,这也仅适用于较小的标签。
任何人都知道解决方案或我做错了什么?
答案 0 :(得分:18)
您可以尝试将align:'right'添加到x轴标签对象。
e.g。
xAxis: { categories: ['Jan', '02/03/2011', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], labels : { y : 20, rotation: -45, align: 'right' } },
答案 1 :(得分: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()函数。