public frmAxisEditor(Graph graph, Graph.Axis axis, bool isVertical) { InitializeComponent(); mGraph = graph; mAxis = axis; mIsVertical = isVertical; FillDataFromAxis(); }
public frmDataSetEditor(Graph graph) { InitializeComponent(); mGraph = graph; RefillListBox(); grpDataSet.Enabled = false; graph.AddedDataset += new Graph.GraphDataSetEventHandler(graph_AddedDataset); }
void graph_AddedDataset(object sender, Graph.GraphDataSetEventArgs e) { RefillListBox(); }