diff --git a/test/effectScatter.html b/test/effectScatter.html
index a05161764c..990d2dd469 100644
--- a/test/effectScatter.html
+++ b/test/effectScatter.html
@@ -564,21 +564,21 @@
]
});
- // setInterval(function () {
- // var rippleEffectCount = ~~(Math.random() * 9) + 1;
- // // console.log('rippleEffectCount', rippleEffectCount);
- // myChart.setOption({
- // series: [{
- // name: 'Top 5',
- // data: convertData(data.sort(function (a, b) {
- // return b.value - a.value;
- // }).slice(0, Math.round(6 * Math.random()))),
- // rippleEffect: {
- // count: rippleEffectCount
- // }
- // }]
- // });
- // }, 2000);
+ setInterval(function () {
+ var rippleEffectCount = ~~(Math.random() * 9) + 1;
+ // console.log('rippleEffectCount', rippleEffectCount);
+ myChart.setOption({
+ series: [{
+ name: 'Top 5',
+ data: convertData(data.sort(function (a, b) {
+ return b.value - a.value;
+ }).slice(0, Math.round(6 * Math.random()))),
+ rippleEffect: {
+ count: rippleEffectCount
+ }
+ }]
+ });
+ }, 2000);
});
diff --git a/test/map-projection.html b/test/map-projection.html
index 667b06e865..5bef5b50e2 100644
--- a/test/map-projection.html
+++ b/test/map-projection.html
@@ -48,11 +48,24 @@