Exemple #1
0
        public cWebChartItem add(cWebChartItem c, String key)
        {
            try
            {
                if (c == null)
                {
                    c = new cWebChartItem();
                }

                if (key == "")
                {
                    key = cReportGlobals.getKey(cReportGlobals.getNextKey().ToString());
                }

                Add(key, c);

                return(c);
            }
            catch
            {
                return(null);
            }
        }
        public cWebChartItem add(cWebChartItem c, String key)
        {
            try
            {
                if (c == null) 
                {
                    c = new cWebChartItem(); 
                }

                if (key == "")
                {
                    key = cReportGlobals.getKey(cReportGlobals.getNextKey().ToString());
                }

                Add(key, c);

                return c;
            }
            catch
            {
                return null;
            }
        }
 public cWebChartItem add(cWebChartItem c)
 {
     return add(c, "");
 }
Exemple #4
0
 public cWebChartItem add(cWebChartItem c)
 {
     return(add(c, ""));
 }