package market.guess.ui.desktop.controllers; import javafx.fxml.FXML; import market.guess.ui.desktop.components.graphic.MarketChart; public class EmptyStateController { @FXML private MarketChart marketChart; public void setAnimating(boolean animating) { if (marketChart != null) { marketChart.setPlaying(animating); } } }