我有一个用 Highcharts 构建的条形图,它的 x 轴使用类别——非常长的罗嗦类别。 我想不出一种确保类别始终保持在一条线上的好方法。我不能缩写它们,除非我可以使用工具提示或其他东西在鼠标悬停或其他一些直观的用户交互时显示长版本。当类别换行时,它开始看起来像一堵文字墙。
以干净的方式显示长类别和数据的任何想法?我愿意考虑使用不同类型的图表,只要它以清晰美观的方式显示数据即可。我想坚持使用 Highcharts,但只有在可能的情况下。
编辑:经过努力,我放弃了以跨浏览器 (IE6+) 的方式将工具提示添加到 x 轴类别标签的想法。即使使用 JQuery,它似乎也不可能或不切实际。我仍在寻找任何可以让我很好地显示这些长类别的解决方案(我对之前创建的小提琴不满意,因为悬停在数据栏上对用户来说不够明显)。
问题图的图片,类别被涂黑:
JSFiddle 代码:
HTML:
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
<div id='mytoolTip'></div>
Javascript:
$(function() {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'bar'
},
title: {
text: 'Historic World Population by Region'
},
subtitle: {
text: 'Source: Wikipedia.org'
},
xAxis: {
categories: ['Africa blahblahblah blah blah blah ', 'America blahblahblah blah blah blah ', 'Asia blahblahblah blah blah blah', 'Europe blahblahblah blah blah blah ', 'Oceania blahblahblah blah blah blah '],
title: {
text: null
},
labels: {
formatter: function() {
return(this.value.substring(0,10) + "...");
}
}
},
yAxis: {
min: 0,
title: {
text: 'Population (millions)',
align: 'high'
},
labels: {
overflow: 'justify'
}
},
tooltip: {
formatter: function() {
$("#mytoolTip").html(this.x + 'and the value is ' + this.y) ;
return false ;
}
},
plotOptions: {
bar: {
dataLabels: {
enabled: true
}
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -100,
y: 100,
floating: true,
borderWidth: 1,
backgroundColor: '#FFFFFF',
shadow: true
},
credits: {
enabled: false
},
series: [{
name: 'Year 1800',
data: [107, 31, 635, 203, 2]
}, {
name: 'Year 1900',
data: [133, 156, 947, 408, 6]
}, {
name: 'Year 2008',
data: [973, 914, 4054, 732, 34]
}]
});
});
});