示例#1
0
 public Chart()
 {
     cfg_display = new ChartConfig(varToStr);
     InitializeComponent();
     plots = new List <IPlot>();
     pensInit();
 }
示例#2
0
        public ChartConfig(ChartConfig that)
        {
            x = that.x;
            y = that.y;

            y_min = that.y_min;
            y_max = that.y_max;
            x_min = that.x_min;
            x_max = that.x_max;
        }