The mouse tracking feature on Highcharts is slower on chrome but not slow on firefox or IE

We have a webapp built using Codeigniter and PHP that uses the Highcharts library and javascript / html on the client side and is deployed to IIS.

The Highcharts library displays various graphs on the screen, more precisely, 5. Each diagram displays data with no more than 1000 lines.

The graphs are built perfectly, but when the mouse hangs around the diagram, the mouse is displayed in frames (only on chrome). See the image below for frame delays caused by mouse tracking.

enter image description here

Surprisingly, this behavior is observed only on chrome, but not in IE or firefox.

- , , . Highcharts , , .

.

Highcharts 2.0.4, 4.0.4

, .

tooltip: {
            formatter: function() {
                        return 'The value for <b>' + this.x + '</b> is <b>' + this.y + '</b>, in series '+ this.series.name;
                       //return "hello";
             }
        }
+4
2

, .

" " chrome chrome://flags/# disable_layer_squashing

P.S @SebastianBochan @HristoValkanov , .

0

Chrome. -, https://www.chromium.org/issue-tracking, .

Internet Explorer, Internet Edge, Safari Firefox . DOM .

:

HTML -

    <style>
        table td :hover:after {
            content: "Add";
        }
    </style>

HTML -

    <table>
        <tr>
            <td>
                Test
            </td>
        </tr>
    </table>

/ <td> , . , "" . 30 000 - .

: , Chromium - (, Github), , - , , Google , , .

Bottom Line: 2018 , - Chrome. , , .

0

All Articles