Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/30/16 16:45:14 (8 years ago)
Author:
pfleck
Message:

#2662

  • Show the current y value on the y-axis label.
  • Changed format of the x- and y-value to fixed significant digits ("G") instead of fixed decimal digits ("N").
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/GradientChart.cs

    r14158 r14267  
    283283
    284284      if (ShowCursor)
    285         chart.Titles[0].Text = FreeVariable + " : " + defaultValue.ToString("N3", CultureInfo.CurrentCulture);
     285        chart.Titles[0].Text = FreeVariable + " : " + defaultValue.ToString("G5", CultureInfo.CurrentCulture);
    286286
    287287      ResizeAllSeriesData();
     
    640640
    641641      if (ShowCursor) {
    642         chart.Titles[0].Text = FreeVariable + " : " + x.ToString("N3", CultureInfo.CurrentCulture);
     642        chart.Titles[0].Text = FreeVariable + " : " + x.ToString("G5", CultureInfo.CurrentCulture);
    643643        chart.Update();
    644644      }
Note: See TracChangeset for help on using the changeset viewer.