internal void LoadSeries()
 {
     if (_profileSession.ProfileLines != null)
     {
         _surfaceProfileChart.InitializeGraph(_profileSession);
     }
 }
        internal SurfaceProfileChart CreateProfileChart()
        {
            _surfaceProfileChart = new SurfaceProfileChart(this);
            _surfaceProfileChart.InitializeGraph();

            return(_surfaceProfileChart);
        }
        internal SurfaceProfileChart CreateProfileChart(double observerHeight)
        {
            _defaultObserverHeight = observerHeight;

            _surfaceProfileChart = new SurfaceProfileChart(this);

            if (_profileSession.DefinitionType != ProfileSettingsTypeEnum.Composed)
            {
                _surfaceProfileChart.InitializeGraph();
            }
            else
            {
                _surfaceProfileChart.IsGraphEmptyHandler(true);
            }

            return(_surfaceProfileChart);
        }