我们使用highcharts(特别是highstock)来绘制多种类型的数据。我们想利用XY缩放类型,但是,如果我们只能放大选择框中选择的内容,那将是非常棒的。
但是,当使用XY放大时,如果在另一个轴中没有选择数据,则轴根本不显示任何内容。如果突出显示/选定区域重新绘制整个图形,那将是理想的选择。
我尝试在浏览器控制台窗口中查看图表对象,缩放后所有轴的“series [x] .visible”等值都相同。是否有可能实现我的要求?
编辑:我应该注意,我们需要让图表不会叠加在一起,因为我们将显示大量的数据,这就是两个图表独立显示的原因。
小提琴:http://jsfiddle.net/cwc4em4w/
$('#container').highcharts({
chart: {
type: 'line',
rightMargin: 80,
zoomType: 'xy'
},
yAxis: [{
id: 'hi',
height: '40%',
top: '10%',
title: { text: 'label 1', y: 0, x: -30, align: 'middle' },
labels: { align: 'left', x: -25 }
}, {
id: 'ho',
height: '40%',
top: '60%',
title: { text: 'label 2', y: 0, x: 0, align: 'middle' },
labels: { align: 'left', x: 0 }
}],
xAxis: [{
type: 'datetime',
tickInterval: 24 * 3600 * 1000,
yAxis: 'hi'
},{
type: 'datetime',
tickInterval: 24 * 3600 * 1000,
yAxis: 'ho'
}],
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000,
yAxis: 'hi'
},{
data: [129.9, 171.5, 1106.4, 1129.2, 1144.0, 1176.0, 1135.6, 1148.5, 1216.4],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000,
yAxis: 'ho'
}]
});
答案 0 :(得分:0)
是的,这是可能的,但只需手动处理:see this fiddle。
要实现上述行为,您可以在以下update the yAxis
properties上legend item click handler:
plotOptions: {
series: {
events: {
legendItemClick: function (e) {
var thisIndex = this.index;
var otherIndex = (this.index == 0) ? 1 : 0;
var isOtherEnabled = false;
if (this.chart.yAxis[otherIndex].options.labels.enabled) {
isOtherEnabled = true;
}
var isThisEnabled = false;
if (this.chart.yAxis[thisIndex].options.labels.enabled) {
isThisEnabled = true;
}
if (isThisEnabled) {
this.chart.yAxis[thisIndex].update({
labels: {
enabled: false
},
title: {
text: null
}
});
if (isOtherEnabled) {
this.chart.yAxis[otherIndex].update({
height: '80%',
top: '10%'
});
}
} else {
this.chart.yAxis[thisIndex].update({
labels: {
enabled: true
},
title: {
text: (thisIndex == 0) ? 'label 1' : 'label 2'
},
height: (isOtherEnabled) ? '40%' : '80%',
top: (isOtherEnabled) ? ((thisIndex == 0) ? '10%' : '60%') : '10%'
});
if (isOtherEnabled) {
this.chart.yAxis[otherIndex].update({
height: '40%',
top: (otherIndex == 0) ? '10%' : '60%'
});
}
}
this.chart.reflow();
}
}
}
},
此外,我看到您尝试通过更改yAxis
和x
来调整y
标签的位置。但是它使得相对于另一个轴的定位:因此,首先,当应用上面的片段时,在隐藏第二个系列时你将看不到label 1
标题,因为它将被定位在highcharts容器之外。要解决该问题,请务必正确定位yAxis.offset
以及its title
relative offset
:
yAxis: [{
id: 'hi',
height: '40%',
top: '10%',
offset: 30,
title: { text: 'label 1', offset: 30, align: 'middle' },
labels: { align: 'left' }
}, {
id: 'ho',
height: '40%',
top: '60%',
offset: 30,
title: { text: 'label 2', offset: 30, align: 'middle' },
labels: { align: 'left' }
}],