WFA_psychometric_chart.Form1_main.SetNodeWithValuesXYCoord C# (CSharp) Method

SetNodeWithValuesXYCoord() public method

public SetNodeWithValuesXYCoord ( string source, string name, string label, Color c1, string comboboxItemText1, double xvalue, double yvalue ) : void
source string
name string
label string
c1 Color
comboboxItemText1 string
xvalue double
yvalue double
return void
        public void SetNodeWithValuesXYCoord(string source, string name, string label, Color c1, string comboboxItemText1, double xvalue, double yvalue)
        {

            tbSource = source;
            tbName = name;
            tbLabel = label;
            colorValue = c1;
            comboboxItemText = comboboxItemText1;
            //lets do the processing 
            //lets count how many items were inserted
            countNumberOfPoints += 1;

            plot_on_graph_values_process_diagram(xvalue, yvalue);


        }
Form1_main