Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/23/09 08:28:50 (15 years ago)
Author:
mstoeger
Message:

x-axis grid can be enabled/disabled #629

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization.Test/3.2/LineChartTests.cs

    r1818 r1876  
    130130      };
    131131
     132      f.ShowDialog();
     133    }
     134
     135    [Test]
     136    public void TestGridX() {
     137      LineChartTestForm f = new LineChartTestForm(model);
     138      IDataRow row1 = new DataRow();
     139      model.AddDataRow(row1);
     140
     141      model.ShowXAxisGrid = false;
     142
     143      Random rand = new Random(42);
     144      for (int i = 0; i < 10; i++) {
     145        row1.AddValue(rand.NextDouble() * 10);
     146      }
    132147      f.ShowDialog();
    133148    }
Note: See TracChangeset for help on using the changeset viewer.