Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/09 17:03:15 (16 years ago)
Author:
mstoeger
Message:

Implemented a continuous-, discrete- and string- label provider for the X/Y axis labels. (#433)

Location:
trunk/sources/HeuristicLab.Visualization/LabelProvider
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/LabelProvider/ContinuousLabelProvider.cs

    r1192 r1194  
    11using System.Globalization;
    22
    3 namespace HeuristicLab.Visualization {
    4   public class DefaultLabelProvider : ILabelProvider {
     3namespace HeuristicLab.Visualization.LabelProvider {
     4  public class ContinuousLabelProvider : ILabelProvider {
    55    private readonly string format;
    66
    7     public DefaultLabelProvider() {}
     7    public ContinuousLabelProvider() {}
    88
    9     public DefaultLabelProvider(string format) {
     9    public ContinuousLabelProvider(string format) {
    1010      this.format = format;
    1111    }
Note: See TracChangeset for help on using the changeset viewer.