Exemple #1
0
        public Object Clone()
        {
            HighCharts obj = new HighCharts();

            obj.name = this.name;

            obj.data = this.data;


            return(obj);
        }
Exemple #2
0
 public void CopyTo(HighCharts obj)
 {
     obj.name = this.name;
     obj.data = this.data;
 }