Jae Sung Park

Results 194 comments of Jae Sung Park

well, to figure out the issue it needs some way to reproduce the issue. If is happening only for `1.9.5`, maybe upgrading to more recent version could possible fix the...

Let the user execute below code from the console, to find if event binding works correctly. ```js // check if native 'mouseover' event works document.querySelector(".bb-event-rects").addEventListener("mouseover", function(e) { console.log(e.type); }); //...

When opt to use multiple `xs`, tooltip will make to be appear on nearby of data series point. In your example, set to hide data points, but if you approach...

@adschm checkout by turning on the visibility of point. And might need to improve this to make `xs` behave as single `x`.

@nirmal93guna, you can do by manually handling axis element with some configuration update. - https://jsfiddle.net/netil/4b3nch9a/1/ ![dynamic-axis](https://user-images.githubusercontent.com/2178435/69684991-2105fe80-10fe-11ea-85bc-8bdf6cf9b5af.gif)

Hi @nirmal93guna, I did test on below env and seems not having any issue. I'm not able test on same env. as you commented, but I'll try find testing in...

Another test on old macOS - macOS 10.11.6 (El Capitan) - Safari 11.1.2 ![image](https://user-images.githubusercontent.com/2178435/70801551-8a6e5880-1df2-11ea-9ab9-f3da68eba20a.png)

@NoiSek, `.config()` is for minor options changes only. In this case use `.load()` instead. ```js var jsonData = [ { timestamp: 1, some_y: 1.0, some_y2: 50, alternate_y: 10000, alternate_y2: 500,...

Hi @angajime, updated the missing definition for `.load()` api. Thanks for the comments.

I have same issue, and figured out that `webpack-common-shake` is doing some transformation on reserved words. The part of SockJS contains following code: ```js , number: function(max) { return Math.floor(Math.random()...