internal void SetCurrentChart(MilSpaceProfileGraphsController graphsController)
        {
            _graphsController = graphsController;

            if (_profileSession.ProfileLines != null && _profileSession.ProfileLines.Count() == 1)
            {
                InvokeSelectedProfile(1);
            }
        }
 internal SurfaceProfileChartController GetCurrentController(SurfaceProfileChart currentChart, MilSpaceProfileGraphsController graphsController)
 {
     currentChart.SetCurrentChart(graphsController);
     return(currentChart.GetController());
 }
 internal void SetCurrentChart(SurfaceProfileChart currentChart, MilSpaceProfileGraphsController graphsController)
 {
     _graphsController    = graphsController;
     _surfaceProfileChart = currentChart;
 }