Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/DefaultLabelProvider.cs @ 1182

Last change on this file since 1182 was 1182, checked in by mstoeger, 16 years ago

Implemented X/Y-Axes and a Grid. (#433)

File size: 419 bytes
Line 
1using System.Globalization;
2
3namespace HeuristicLab.Visualization {
4  public class DefaultLabelProvider : ILabelProvider {
5    private readonly string format;
6
7    public DefaultLabelProvider() {}
8
9    public DefaultLabelProvider(string format) {
10      this.format = format;
11    }
12
13    public string GetLabel(double value) {
14      return value.ToString(format, CultureInfo.InvariantCulture);
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.