Example #1
0
        protected override void DealWithApperence()
        {
            if (this != null)
            {
                RadarApperenceFrm form1 = new RadarApperenceFrm();

                form1.ChartParent = this;
                DataSource ds = this.Apperence.Clone();
                form1.PMSChartAppearance = this.Apperence.PMSChartAppearance;
                form1.chartAreaList      = ds.ChartAreaList;
                form1.legendList         = ds.LegendList;
                form1.seriesList         = ds.SeriesList;
                form1.titleList          = ds.TitleList;
                if (DialogResult.OK == form1.ShowDialog())
                {
                    isIntial = true;
                    InitailColumnData();
                }
            }
        }