public object Clone()
        {
            EmbeddedChartControl c = new EmbeddedChartControl();

            if (Chart != null)
            {
                c.AddChart(Chart.Clone() as ChartControl);
                c.RecommendedSize = RecommendedSize;
            }
            return(c);
        }