using System.Collections.Generic; namespace LiveCharts { /// /// /// public interface IAxisWindow { /// /// Gets the minimum reserved space for separators /// double MinimumSeparatorWidth { get; } /// /// Determines whether a dateTime is a header /// bool IsHeader(double x); /// /// Gets or sets a function to determine whether a dateTime is a separator /// bool IsSeparator(double x); /// /// Gets or sets a function to format the label for the axis /// string FormatAxisLabel(double x); bool TryGetSeparatorIndices(IEnumerable indices, int maximumSeparatorcount, out IEnumerable separatorIndices); } }