Remove chart hovering behaviour

While hovering the mouse over a chart, the point or curve below highlights. How to avoid this behaviour?
In a naive first attempt I started charging empty listeners:

    addChartSelectionListener(new ChartSelectionListener() {
        @Override
        public void onSelection(ChartSelectionEvent event) {
            // Nothing. Hoping to remove visual behaviour on hovering.
        }
    });


    addPointClickListener(new PointClickListener() {
        @Override
        public void onClick(PointClickEvent event) {
            // Nothing. Hoping to remove visual behaviour on hovering.
        }
    });

I’m wondering the same thing but my case is that I want point markers while hovering line chart but not the linewidth expansion.

Anyway this is working (at least for line charts) if you want to disable all hovering effects. Just change the option to match your need.

options = new PlotOptionsLine();
options.setStates(new States(new State(false)));