Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LogarithmNumericTicksProvider"/> class.
 /// </summary>
 public LogarithmNumericTicksProvider()
 {
     minorProvider          = new MinorNumericTicksProvider(this);
     minorProvider.Changed += ticksProvider_Changed;
 }
 public GroupTicksProvider(int groupCount)
 {
     _ticks                  = Enumerable.Range(0, groupCount + 1).Select(i => (double)i).ToArray();
     _minorProvider          = new MinorNumericTicksProvider(this);
     _minorProvider.Changed += ticksProvider_Changed;
 }
 public RadioBandFrequencyTicksProvider(RadioBandPlotConfig config)
 {
     _ticks                  = config.Ticks;
     _minorProvider          = new MinorNumericTicksProvider(this);
     _minorProvider.Changed += ticksProvider_Changed;
 }