Package org.jfree.chart.fx.interaction

Examples of org.jfree.chart.fx.interaction.ScrollHandlerFX


        this.availableMouseHandlers.add(new PanHandlerFX("pan", true, false,
                false, false));
        this.auxiliaryMouseHandlers = new ArrayList<MouseHandlerFX>();
        this.auxiliaryMouseHandlers.add(new TooltipHandlerFX("tooltip"));
        this.auxiliaryMouseHandlers.add(new ScrollHandlerFX("scroll"));
        this.auxiliaryMouseHandlers.add(new AnchorHandlerFX("anchor"));
        this.auxiliaryMouseHandlers.add(new DispatchHandlerFX("dispatch"));
       
        setOnMouseMoved((MouseEvent e) -> { handleMouseMoved(e); });
        setOnMouseClicked((MouseEvent e) -> { handleMouseClicked(e); });
View Full Code Here

TOP

Related Classes of org.jfree.chart.fx.interaction.ScrollHandlerFX

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.