Changeset 1884
- Timestamp:
- 05/23/09 10:50:14 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization.Test/3.2/LineChartTests.cs
r1881 r1884 596 596 f.ShowDialog(); 597 597 } 598 599 600 [Test] 601 public void TestPointLines() { 602 IDataRow row1 = new DataRow { Color = Color.Red, Thickness = 3, Style = DrawingStyle.Dashed }; 603 604 row1.LineType = DataRowType.Points; 605 model.AddDataRow(row1); 606 607 row1.AddValue(10); 608 row1.AddValue(5); 609 row1.AddValue(7); 610 row1.AddValue(3); 611 row1.AddValue(10); 612 row1.AddValue(2); 613 614 LineChartTestForm f = new LineChartTestForm(model); 615 f.ShowDialog(); 616 } 617 618 598 619 } 599 620 }
Note: See TracChangeset
for help on using the changeset viewer.