WinRTXamlToolkit.Controls.DataVisualization.Charting.LinearAxis.GetLabelValues C# (CSharp) Method

GetLabelValues() protected method

Returns a sequence of values to plot on the axis.
protected GetLabelValues ( Size availableSize ) : IEnumerable
availableSize Windows.Foundation.Size The available size.
return IEnumerable
        protected override IEnumerable<IComparable> GetLabelValues(Size availableSize)
        {
            return GetMajorValues(availableSize).CastWrapper<IComparable>();
        }