Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/10 06:46:30 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs

    r2908 r2917  
    3131  /// The visual representation of a <see cref="Variable"/>.
    3232  /// </summary>
     33  [View("DataTable View")]
    3334  [Content(typeof(DataTable), true)]
    3435  public sealed partial class DataTableView : NamedItemView {
     
    109110      Series series = new Series(row.Name);
    110111      series.ChartType = SeriesChartType.FastLine;
     112      series.ToolTip = "#VAL";
    111113      for (int i = 0; i < row.Values.Count; i++)
    112114        series.Points.Add(row.Values[i]);
Note: See TracChangeset for help on using the changeset viewer.