public void DisplayProductType(string productType)
 {
     DestroyGameObjects();
     titleLabel.text = "Product Forecast for Product Type - " + productType;
     forecast.CallForecastProductType(productType);
     forecast.onGetForecast += Forecast_onGetForecast;
     noProductsPopup.SetActive(false);
     ZeroLineMarker.SetActive(false);
     loadingPopup.SetActive(true);
 }