Esempio n. 1
0
        public PlottableRadar PlotRadar(
            double[,] values,
            string[] categoryNames = null,
            string[] groupNames    = null,
            Color[] fillColors     = null,
            double fillAlpha       = .4,
            Color?webColor         = null
            )
        {
            fillColors = fillColors ?? Enumerable.Range(0, values.Length).Select(i => settings.colorset.GetColor(i)).ToArray();
            webColor   = webColor ?? Color.Gray;

            var plottable = new PlottableRadar(values, categoryNames, groupNames, fillColors, (byte)(fillAlpha * 256), webColor.Value);

            Add(plottable);
            MatchAxis(this);

            return(plottable);
        }
Esempio n. 2
0
        public PlottableRadar PlotRadar(
            double[,] values,
            string[] categoryNames = null,
            string[] groupNames    = null,
            Color[] fillColors     = null,
            double fillAlpha       = .4,
            Color?webColor         = null
            )
        {
            Color[] colors      = fillColors ?? Enumerable.Range(0, values.Length).Select(i => settings.colorset.GetColor(i)).ToArray();
            Color[] colorsAlpha = colors.Select(x => Color.FromArgb((byte)(255 * fillAlpha), x)).ToArray();

            var plottable = new PlottableRadar(values, colors, fillColors ?? colorsAlpha)
            {
                categoryNames = categoryNames,
                groupNames    = groupNames,
                webColor      = webColor ?? Color.Gray
            };

            Add(plottable);
            MatchAxis(this);

            return(plottable);
        }