Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HistogramViewTest/Form1.cs @ 6013

Last change on this file since 6013 was 6013, checked in by abeham, 13 years ago

#1465

  • removed AggregatedHistogramHistoryView
  • removed Histogram and HistogramHistory data structures
  • removed HistogramView and HistogramHistoryView, but left the HistogramControl
  • adapted the QualityDistributionAnalyzer to create a DataTable instead
  • added a StoreHistory parameter
  • adapted the temporary test project
File size: 765 bytes
Line 
1using System;
2using System.Windows.Forms;
3using HeuristicLab.Analysis;
4using HeuristicLab.Analysis.Views;
5
6namespace HistogramViewTest {
7  public partial class Form1 : Form {
8    private DataTableView view;
9
10    public Form1() {
11      InitializeComponent();
12      view = new DataTableView();
13      DataTable hist = new DataTable("TestTable");
14      DataRow row = new DataRow("Test");
15      row.VisualProperties.ChartType = DataRowVisualProperties.DataRowChartType.Histogram;
16      Random rand = new Random();
17      for (int index = 1; index < 100; index++) {
18        row.Values.Add(rand.Next(1, 1000));
19      }
20      hist.Rows.Add(row);
21      view.Content = hist;
22      view.Dock = DockStyle.Fill;
23      Controls.Add(view);
24    }
25  }
26}
Note: See TracBrowser for help on using the repository browser.