gzhong88 commented on issue #18175:
URL: https://github.com/apache/echarts/issues/18175#issuecomment-1384515909

   If you cannot reproduce, try to set the no data gap bigger by changing i 
<160 to i<190 as following, and try again.  Thanks.
   Replacing line 11 in function generateData(theta, min, max) with
   
   if (i> 10 && i<190) {
        data.push([i, j, undefined]);
   }
   else {
        data.push([i, j, noise.perlin2(i / 40, j / 20) + 0.5]);
   }


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to