示例#1
0
        public frmAxisEditor(Graph graph, Graph.Axis axis, bool isVertical)
        {
            InitializeComponent();

            mGraph = graph;
            mAxis = axis;
            mIsVertical = isVertical;

            FillDataFromAxis();
        }
示例#2
0
        public frmDataSetEditor(Graph graph)
        {
            InitializeComponent();

            mGraph = graph;

            RefillListBox();

            grpDataSet.Enabled = false;

            graph.AddedDataset += new Graph.GraphDataSetEventHandler(graph_AddedDataset);
        }
示例#3
0
 void graph_AddedDataset(object sender, Graph.GraphDataSetEventArgs e)
 {
     RefillListBox();
 }