Ejemplo n.º 1
0
        public FormChart(string title, Series[] series)
        {
            InitializeComponent();

            _series  = series;
            _gvChart = new gvChart(chart1);

            chart1.Titles.Add(title);
            this.Name = title;
        }
Ejemplo n.º 2
0
        public FormChartWizard(IDisplay display, IFeatureLayer layer)
        {
            _display = display;
            _layer   = layer;

            InitializeComponent();

            _gvChart = new gvChart(chartPreview);
            chartPreview.Series.Clear();
            chartPreview.ChartAreas.Clear();

            cmbDisplayMode.SelectedIndex = (int)gvChart.DisplayMode.EverySerieInTheSameChartArea;
        }