Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/01/14 16:16:29 (10 years ago)
Author:
ascheibe
Message:

#2279 added support for multiple data rows in histogram control

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3/HistogramControl.Designer.cs

    r11171 r11608  
    4545    /// </summary>
    4646    private void InitializeComponent() {
     47      this.components = new System.ComponentModel.Container();
    4748      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     49      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
    4850      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
    4951      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
     
    5860      //
    5961      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    60                   | System.Windows.Forms.AnchorStyles.Left)
    61                   | System.Windows.Forms.AnchorStyles.Right)));
     62            | System.Windows.Forms.AnchorStyles.Left)
     63            | System.Windows.Forms.AnchorStyles.Right)));
    6264      chartArea1.Name = "ChartArea1";
    6365      this.chart.ChartAreas.Add(chartArea1);
     66      legend1.Alignment = System.Drawing.StringAlignment.Center;
     67      legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
     68      legend1.Name = "Default";
     69      this.chart.Legends.Add(legend1);
    6470      this.chart.Location = new System.Drawing.Point(0, 27);
    6571      this.chart.Name = "chart";
    6672      series1.ChartArea = "ChartArea1";
     73      series1.Legend = "Default";
    6774      series1.Name = "Series1";
    6875      this.chart.Series.Add(series1);
     
    116123      // HistogramControl
    117124      //
    118       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    119125      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
    120126      this.Controls.Add(this.exactCheckBox);
Note: See TracChangeset for help on using the changeset viewer.