// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) 2014 OxyPlot contributors // // // Defines additional . // // -------------------------------------------------------------------------------------------------------------------- namespace OxyPlot.Wpf { using System.Windows.Media; /// /// Defines additional . /// public static class MoreColors { /// /// The undefined color. /// public static readonly Color Undefined = Color.FromArgb(0, 0, 0, 0); /// /// The automatic color. /// public static readonly Color Automatic = Color.FromArgb(0, 0, 0, 1); } }