Пример #1
0
        /// <summary>User has clicked an axis.</summary>
        /// <param name="axisType">Type of the axis.</param>
        private void OnAxisClick(Axis.AxisType axisType)
        {
            AxisPresenter AxisPresenter = new AxisPresenter();

            currentPresenter = AxisPresenter;
            AxisView A = new AxisView(graphView as GraphView);

            graphView.ShowEditorPanel(A.MainWidget, "Axis options");
            AxisPresenter.Attach(GetAxis(axisType), A, explorerPresenter);
        }
Пример #2
0
        /// <summary>User has clicked an axis.</summary>
        /// <param name="axisType">Type of the axis.</param>
        private void OnAxisClick(Axis.AxisType axisType)
        {
            AxisPresenter AxisPresenter = new AxisPresenter();

            currentPresenter = AxisPresenter;
            AxisView A = new AxisView();

            graphView.ShowEditorPanel(A);
            AxisPresenter.Attach(GetAxis(axisType), A, explorerPresenter);
        }
Пример #3
0
        /// <summary>User has clicked an axis.</summary>
        /// <param name="axisType">Type of the axis.</param>
        private void OnAxisClick(Axis.AxisType axisType)
        {
            if (currentPresenter != null)
            {
                currentPresenter.Detach();
            }
            AxisPresenter AxisPresenter = new AxisPresenter();

            currentPresenter = AxisPresenter;
            AxisView A         = new AxisView(graphView as GraphView);
            string   dimension = (axisType == Axis.AxisType.Left || axisType == Axis.AxisType.Right) ? "Y" : "X";

            graphView.ShowEditorPanel(A.MainWidget, dimension + "-Axis options");
            AxisPresenter.Attach(GetAxis(axisType), A, explorerPresenter);
        }
Пример #4
0
        /// <summary>User has clicked an axis.</summary>
        /// <param name="axisType">Type of the axis.</param>
        private void OnAxisClick(AxisPosition axisType)
        {
            if (CurrentPresenter != null)
            {
                CurrentPresenter.Detach();
            }

            AxisPresenter axisPresenter = new AxisPresenter();

            CurrentPresenter = axisPresenter;
            AxisView a         = new AxisView(graphView as GraphView);
            string   dimension = (axisType == AxisPosition.Left || axisType == AxisPosition.Right) ? "Y" : "X";

            graphView.ShowEditorPanel(a.MainWidget, dimension + "-Axis options");
            axisPresenter.Attach(GetAxis(axisType), a, explorerPresenter);
        }
Пример #5
0
 /// <summary>User has clicked an axis.</summary>
 /// <param name="axisType">Type of the axis.</param>
 private void OnAxisClick(Axis.AxisType axisType)
 {
     AxisPresenter AxisPresenter = new AxisPresenter();
     currentPresenter = AxisPresenter;
     AxisView A = new AxisView();
     graphView.ShowEditorPanel(A);
     AxisPresenter.Attach(GetAxis(axisType), A, explorerPresenter);
 }
Пример #6
0
 /// <summary>User has clicked an axis.</summary>
 /// <param name="axisType">Type of the axis.</param>
 private void OnAxisClick(Axis.AxisType axisType)
 {
     if (currentPresenter != null)
         currentPresenter.Detach();
     AxisPresenter AxisPresenter = new AxisPresenter();
     currentPresenter = AxisPresenter;
     AxisView A = new AxisView(graphView as GraphView);
     string dimension = (axisType == Axis.AxisType.Left || axisType == Axis.AxisType.Right) ? "Y" : "X";
     graphView.ShowEditorPanel(A.MainWidget, dimension + "-Axis options");
     AxisPresenter.Attach(GetAxis(axisType), A, explorerPresenter);
 }
Пример #7
0
 /// <summary>User has clicked an axis.</summary>
 /// <param name="axisType">Type of the axis.</param>
 private void OnAxisClick(Axis.AxisType axisType)
 {
     if (currentPresenter != null)
         currentPresenter.Detach();
     AxisPresenter AxisPresenter = new AxisPresenter();
     currentPresenter = AxisPresenter;
     AxisView A = new AxisView(graphView as GraphView);
     graphView.ShowEditorPanel(A.MainWidget, "Axis options");
     AxisPresenter.Attach(GetAxis(axisType), A, explorerPresenter);
 }