WFA_psychometric_chart.Form1_main.EditComfortZoneGraphicalWay C# (CSharp) Method

EditComfortZoneGraphicalWay() public method

Helps to edit the comfort one when click raises four lines which can be dragged based on temperature along x axis and humidity along y axis
public EditComfortZoneGraphicalWay ( ) : void
return void
        public void EditComfortZoneGraphicalWay()
        {
            /*Steps :
            1.show comfortzone with lines These lines should be black in color 
            2.
            */
            PlotOuterBorderForComfortZone(double.Parse(listchartComfortZoneInfoSingle[0].min_temp), double.Parse(listchartComfortZoneInfoSingle[0].max_temp), double.Parse(listchartComfortZoneInfoSingle[0].min_hum), double.Parse(listchartComfortZoneInfoSingle[0].max_hum), Color.Black);

            flagForEditComfortZoneGraphically = 1;

        }
           /// <summary>
Form1_main