Exemplo n.º 1
0
 public FrameLayer(PlotPanel plotPanel)
     : base(plotPanel)
 {
     panel = new Panel().SetName("frame panel");
     plotPanel.Plot.Add(panel);
     leftPanel = new Panel();
     plotPanel.Left.Add(leftPanel);
     bottomPanel = new Panel();
     plotPanel.Bottom.Add(bottomPanel);
 }
Exemplo n.º 2
0
        //PointSelectionManager psm;

        public PointLayer(PlotPanel plotPanel)
            : base(plotPanel)
        {
            //psm = new PointSelectionManager(dataSet);
            //plotPanel.selectionManagers.Add(psm);

            panel = new Panel().SetName("point panel");
            plotPanel.Plot.Add(panel);

            DoLayout();
        }
Exemplo n.º 3
0
 public Layer(PlotPanel plotPanel)
 {
     this.plotPanel = plotPanel;
     this.state     = plotPanel.state;
 }
Exemplo n.º 4
0
 public Layer(PlotPanel plotPanel)
 {
     this.plotPanel = plotPanel;
     this.state = plotPanel.state;
 }