IDateTimeUnit.cs 217 B

123456789
  1. using System;
  2. namespace ScottPlot.Ticks.DateTimeTickUnits
  3. {
  4. public interface IDateTimeUnit
  5. {
  6. (double[] Ticks, string[] Labels) GetTicksAndLabels(DateTime from, DateTime to, string format);
  7. }
  8. }