是否有人尝试在类选择器上运行高图表回流()函数而不是id选择器?
看到的例子,我有2个图表与1个按钮来切换其包含的div大小。我还有另外2个按钮,一个按id回流图表,另一个按类回流图表。
注意,使用类选择器的那个似乎不会回流两个图表,它只会回流使用那个类的第一个元素。
http://jsfiddle.net/deN74/1/HTML:<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div style="width: 600px">
<div id="container1" class="needreflow" style="width: 400px; height: 300px; margin: 1em; border: 1px solid gray"></div>
<div id="container2" class="needreflow" style="width: 400px; height: 300px; margin: 1em; border: 1px solid gray"></div>
</div>
<button id="set-div-size" class="autocompare">Toggle container size</button>
<button id="reflow-chart-byid" class="autocompare">Reflow charts by id selector</button>
<button id="reflow-chart-byclass" class="autocompare">Reflow charts by class selector</button>
JS:
$(function () {
$('#container1').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar']
},
series: [{
data: [29.9, 71.5, 106.4]
}]
});
$('#container2').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar']
},
series: [{
data: [29.9, 71.5, 106.4]
}]
});
var wide = false;
$('#set-div-size').click(function () {
$('#container1').width(wide ? 400 : 500);
$('#container2').width(wide ? 400 : 500);
wide = !wide;
});
$('#reflow-chart-byid').click(function () {
$('#container1').highcharts().reflow();
$('#container2').highcharts().reflow();
});
$('#reflow-chart-byclass').click(function () {
$('.needreflow').highcharts().reflow();
});
});
这是一个很好的观察,我相信这归结为.highcharts()
函数是如何实现的。正如所观察到的,它不会影响带有类选择器的多个元素,因为它只对单个元素起作用。
如果查看函数的源代码(第971-1005行),可以看到以下代码:
/**
* Register Highcharts as a plugin in the respective framework
*/
$.fn.highcharts = function () {
...
// When called without parameters or with the return argument, get a predefined chart
if (options === UNDEFINED) {
ret = charts[attr(this[0], 'data-highcharts-chart')];
}
...
return ret;
}
返回值将始终是this[0]
,这意味着无论您选择多少个元素,它将返回第一个,并且根本不处理多个元素。
reflow
也将只执行一次,因为highcharts
函数不返回reflow
函数可以操作的列表。如果是这样,我猜reflow
函数也不支持多个元素。
一个解决方案可能是使用.each
来迭代每个容器,你找到你的选择器,像这样(JSFiddle):
$('.needreflow').each(function() { $(this).highcharts().reflow(); });