Beispiel #1
0
        internal int NStackGroups()
        {
            int num = 0;

            foreach (DataSeries series in Series)
            {
                num = Math.Max(num, BarColumnOptions.GetStackGroup(series));
            }
            return(num + 1);
        }
Beispiel #2
0
 internal virtual double GetClusterWidth()
 {
     if (_visual is Chart)
     {
         double size = BarColumnOptions.GetSize((Chart)_visual);
         if (size > 0.0)
         {
             return(size);
         }
     }
     if (!Inverted)
     {
         return(SizeX);
     }
     return(SizeY);
 }
Beispiel #3
0
        UIElement[] IView2DRenderer.Generate()
        {
            int nser = _dataInfo.nser;
            int npts = _dataInfo.npts;

            if ((nser == 0) || (npts == 0))
            {
                return(null);
            }

            List <UIElement> objects    = new List <UIElement>();
            Rect             dataBounds = CoordConverter.DataBounds;
            bool             isStacked  = base.IsStacked;
            StackedSum       sum        = null;
            StackedSum       sum2       = null;
            StackedSum       sum3       = null;
            int nsg = 1;

            if (isStacked)
            {
                nsg  = base.NStackGroups();
                sum  = new StackedSum(nsg);
                sum2 = new StackedSum(nsg);
                sum3 = new StackedSum(nsg);
            }

            double       num4  = GetClusterWidth() * _dataInfo.DeltaX;
            IPlotElement defel = null;

            if (base.Symbol is PlotElement)
            {
                defel = ((PlotElement)base.Symbol).Clone() as IPlotElement;
            }

            bool defval   = (defel != null) ? defel.IsClustered : false;
            bool inverted = base.Inverted;
            int  num5     = 0;

            int[] numArray  = null;
            int[] numArray2 = null;
            if (isStacked)
            {
                num5 = base.NStackGroups();
            }
            else
            {
                numArray  = NClustered(defval);
                numArray2 = new int[numArray.Length];
                num5      = numArray[0];
            }

            double d             = 0.0;
            double origin        = 0.0;
            double seriesOverlap = 0.0;
            Chart  visual        = Chart;
            string xformat       = null;
            string yformat       = null;
            bool   flag4         = false;
            bool   flag5         = false;

            if (visual != null)
            {
                origin        = BarColumnOptions.GetOrigin(visual);
                xformat       = visual.View.AxisX.AnnoFormatInternal;
                yformat       = visual.View.AxisY.AnnoFormatInternal;
                flag4         = !double.IsNaN(visual.View.AxisX.LogBase);
                flag5         = !double.IsNaN(visual.View.AxisY.LogBase);
                seriesOverlap = BarColumnOptions.GetSeriesOverlap(visual);
                if (seriesOverlap > 1.0)
                {
                    seriesOverlap = 1.0;
                }
                else if (seriesOverlap < -1.0)
                {
                    seriesOverlap = -1.0;
                }
            }

            int si    = 0;
            int num10 = 0;

            while (si < nser)
            {
                IDataSeriesInfo ds     = base.Series[si];
                DataSeries      series = (DataSeries)base.Series[si];
                series.Children.Clear();
                objects.Add(series);
                series.SetDefaultFormat(xformat, yformat);
                int stackGroup = 0;
                if (isStacked)
                {
                    stackGroup = BarColumnOptions.GetStackGroup(series);
                }
                if (series.SymbolShape == null)
                {
                    series.SymbolShape = base.StyleGen.Next();
                }
                ShapeStyle symbolShape = series.SymbolShape;
                bool?      nullable    = null;
                double[,] values = ds.GetValues();
                if (values != null)
                {
                    int           length = values.GetLength(1);
                    int           num13  = values.GetLength(0);
                    RenderContext rc     = new RenderContext(this, ds, length)
                    {
                        Bounds = CoordConverter.ViewBounds
                    };
                    Rect clipBounds = rc.ClipBounds;
                    clipBounds = new Rect(clipBounds.X - 1.0, clipBounds.Y - 1.0, clipBounds.Width + 2.0, clipBounds.Height + 2.0);
                    double naN = double.NaN;
                    if ((rc.OptimizationRadiusScope & OptimizationRadiusScope.Symbols) > ((OptimizationRadiusScope)0))
                    {
                        naN = rc.OptimizationRadius;
                    }
                    bool isClustered = defval;
                    bool flag7       = series.IsStacked;
                    int  num15       = 0;
                    int  num16       = length;
                    if (_dataInfo.incX && !inverted)
                    {
                        Rect rect2 = CoordConverter.DataBounds2D;
                        for (int j = 0; j < length; j++)
                        {
                            double num18 = (num13 >= 2) ? values[1, j] : ((double)j);
                            if (num18 >= rect2.Left)
                            {
                                num15 = Math.Max(0, j - 2);
                                break;
                            }
                        }
                        for (int k = num15; k < length; k++)
                        {
                            double num20 = (num13 >= 2) ? values[1, k] : ((double)k);
                            if (num20 > rect2.Right)
                            {
                                num16 = k;
                                break;
                            }
                        }
                        num16 = Math.Min(length, num16 + 2);
                    }
                    Point point = new Point();
                    for (int i = num15; i < num16; i++)
                    {
                        double       num22     = values[0, i];
                        double       x         = (num13 >= 2) ? values[1, i] : ((double)i);
                        double       y         = x;
                        Style        style     = null;
                        IPlotElement pe        = null;
                        bool?        nullable2 = nullable;
                        if (!nullable2.GetValueOrDefault() || !nullable2.HasValue)
                        {
                            if (base.ColorScheme == ColorScheme.Point)
                            {
                                symbolShape = base.StyleGen.GetStyle(i);
                            }
                            style = base.GetStyle(series, si, i);
                            pe    = base.CreateElement(series.Symbol, style);
                            if (pe == null)
                            {
                                pe = PlotElement.SymbolFromMarker(series.SymbolMarker);
                                if ((pe != null) && (style != null))
                                {
                                    pe.Style = style;
                                }
                            }
                            if ((pe == null) && series.ChartType.HasValue)
                            {
                                ChartSubtype subtype = ChartTypes.GetSubtype(series.ChartType.ToString());
                                if (subtype != null)
                                {
                                    pe = base.CreateElement(subtype.Symbol, style);
                                }
                            }
                            else if (pe == null)
                            {
                                if (series.IsDefaultSymbol && (defel != null))
                                {
                                    pe       = defel;
                                    pe.Style = style;
                                    defel    = ((PlotElement)base.Symbol).Clone() as IPlotElement;
                                }
                            }
                            else
                            {
                                isClustered = pe.IsClustered;
                            }
                            if (pe == null)
                            {
                                isClustered = false;
                                if ((series.PointLabelTemplate != null) || (series.PointTooltipTemplate != null))
                                {
                                    DotSymbol symbol = new DotSymbol();
                                    symbol.Fill   = TransparentBrush;
                                    symbol.Size   = new Size(5.0, 5.0);
                                    symbol.Stroke = TransparentBrush;
                                    pe            = symbol;
                                }
                                else
                                {
                                    nullable = true;
                                }
                            }
                            else
                            {
                                isClustered = pe.IsClustered;
                            }
                        }
                        bool flag8 = (flag4 && inverted) || (flag5 && !inverted);
                        if (!flag8)
                        {
                            if (nsg > 1)
                            {
                                if (flag7)
                                {
                                    x += ((-0.5 * num4) + ((0.5 * num4) / ((double)num5))) + ((stackGroup * num4) / ((double)num5));
                                }
                            }
                            else if (isClustered)
                            {
                                int clusterPlotAreaIndex = rc.ClusterPlotAreaIndex;
                                if (clusterPlotAreaIndex == 0)
                                {
                                    if (num5 > 1)
                                    {
                                        x += ((-0.5 * num4) + ((0.5 * num4) / ((double)num5))) + ((num10 * num4) / ((double)num5));
                                    }
                                }
                                else if (numArray[clusterPlotAreaIndex] > 1)
                                {
                                    x += ((-0.5 * num4) + ((0.5 * num4) / ((double)numArray[clusterPlotAreaIndex]))) + ((numArray2[clusterPlotAreaIndex] * num4) / ((double)numArray[clusterPlotAreaIndex]));
                                }
                            }
                        }
                        if (isStacked && flag7)
                        {
                            if (double.IsNaN(num22))
                            {
                                num22 = 0.0;
                            }
                            if (base.IsStacked100)
                            {
                                if (_dataInfo.Stacked[stackGroup, x] != 0.0)
                                {
                                    num22 = ((num22 * 100.0) / _dataInfo.Stacked[stackGroup, x]) + sum[stackGroup, x];
                                }
                            }
                            else
                            {
                                num22 += sum[stackGroup, x];
                            }
                        }
                        double num26 = x;
                        if (inverted)
                        {
                            double num27 = x;
                            x     = num22;
                            num22 = num27;
                        }
                        double num28 = rc.ConvertX(x);
                        double num29 = rc.ConvertY(num22);
                        if (((isStacked && flag7) && (si > 0)) && ((inverted && !double.IsNaN(num29)) || (!inverted && !double.IsNaN(num28))))
                        {
                            rc.SetPrevious(sum[stackGroup, num26]);
                        }
                        nullable2 = nullable;
                        if (!nullable2.GetValueOrDefault() || !nullable2.HasValue)
                        {
                            if (isClustered)
                            {
                                int num30 = num5;
                                if (rc.ClusterPlotAreaIndex > 0)
                                {
                                    num30 = numArray[rc.ClusterPlotAreaIndex];
                                }
                                if (num30 > 0)
                                {
                                    if (inverted)
                                    {
                                        d = Math.Abs((double)(CoordConverter.ConvertY((num4 / ((double)num30)) + num22) - CoordConverter.ConvertY(num22)));
                                    }
                                    else
                                    {
                                        d = Math.Abs((double)(CoordConverter.ConvertX((num4 / ((double)num30)) + x) - CoordConverter.ConvertX(x)));
                                    }
                                }
                            }
                            else if (inverted)
                            {
                                d = Math.Abs((double)(CoordConverter.ConvertY(num4 + num22) - CoordConverter.ConvertY(num22)));
                            }
                            else
                            {
                                d = Math.Abs((double)(CoordConverter.ConvertX(num4 + x) - CoordConverter.ConvertX(x)));
                            }
                            if (double.IsNaN(d))
                            {
                                d = inverted ? (base.SizeY * 20.0) : (base.SizeX * 20.0);
                            }
                        }
                        if (flag8)
                        {
                            double num31 = 0.0;
                            double num32 = d * num5;
                            if (nsg > 1)
                            {
                                if (flag7)
                                {
                                    num31 = ((-0.5 * num32) + ((0.5 * num32) / ((double)num5))) + ((stackGroup * num32) / ((double)num5));
                                }
                            }
                            else if ((num5 > 1) && isClustered)
                            {
                                num31 = ((-0.5 * num32) + ((0.5 * num32) / ((double)num5))) + ((num10 * num32) / ((double)num5));
                            }
                            if (num31 != 0.0)
                            {
                                if (inverted)
                                {
                                    num29 += num31;
                                }
                                else
                                {
                                    num28 += num31;
                                }
                            }
                        }
                        if (isStacked && flag7)
                        {
                            StackedSum sum4;
                            int        num63;
                            double     num64;
                            double     num33 = values[0, i];
                            if (double.IsNaN(num33))
                            {
                                num33 = 0.0;
                            }
                            double num34 = (num33 >= 0.0) ? sum2[stackGroup, num26] : sum3[stackGroup, num26];
                            double num35 = (num33 >= 0.0) ? (sum2[stackGroup, num26] + num33) : (sum3[stackGroup, num26] + num33);
                            if (base.IsStacked100)
                            {
                                num34 = (num34 * 100.0) / _dataInfo.Stacked[stackGroup, num26];
                                num35 = (num35 * 100.0) / _dataInfo.Stacked[stackGroup, num26];
                            }
                            if (inverted)
                            {
                                double num36;
                                double num37;
                                double num38;
                                if (flag4)
                                {
                                    double minX = rc.GetMinX(CoordConverter.DataBounds2D);
                                    num36 = CoordConverter.ConvertX(Math.Max(num35, minX));
                                    num37 = CoordConverter.ConvertX(Math.Max(num34, minX));
                                }
                                else
                                {
                                    num36 = CoordConverter.ConvertX(num35);
                                    num37 = CoordConverter.ConvertX(num34);
                                }
                                if (flag5)
                                {
                                    num38 = base.SizeY * 20.0;
                                }
                                else
                                {
                                    num38 = Math.Abs((double)(CoordConverter.ConvertY(num4 / ((double)nsg)) - CoordConverter.ConvertY(0.0)));
                                }
                                double width = Math.Abs((double)(num37 - num36));
                                rc.Rect = new Rect(Math.Min(num36, num37), num29 - (0.5 * num38), width, num38);
                                sum[stackGroup, num26] = x;
                            }
                            else
                            {
                                double num41;
                                double num42;
                                double num43;
                                if (flag5)
                                {
                                    double minY = rc.GetMinY(CoordConverter.DataBounds2D);
                                    num41 = CoordConverter.ConvertY(Math.Max(num35, minY));
                                    num42 = CoordConverter.ConvertY(Math.Max(num34, minY));
                                }
                                else
                                {
                                    num41 = CoordConverter.ConvertY(num35);
                                    num42 = CoordConverter.ConvertY(num34);
                                }
                                if (flag4)
                                {
                                    num43 = base.SizeX * 20.0;
                                }
                                else
                                {
                                    num43 = Math.Abs((double)(CoordConverter.ConvertX(num4 / ((double)nsg)) - CoordConverter.ConvertX(0.0)));
                                }
                                double height = Math.Abs((double)(num42 - num41));
                                rc.Rect = new Rect(num28 - (0.5 * num43), Math.Min(num41, num42), num43, height);
                                sum[stackGroup, num26] = num22;
                            }
                            if (num33 >= 0.0)
                            {
                                (sum4 = sum2)[num63 = stackGroup, num64 = num26] = sum4[num63, num64] + num33;
                            }
                            else
                            {
                                (sum4 = sum3)[num63 = stackGroup, num64 = num26] = sum4[num63, num64] + num33;
                            }
                        }
                        else
                        {
                            nullable2 = nullable;
                            if (!nullable2.GetValueOrDefault() || !nullable2.HasValue)
                            {
                                double num46 = origin;
                                if (inverted)
                                {
                                    double num47 = rc.GetMinX(CoordConverter.DataBounds2D);
                                    double maxX  = rc.GetMaxX(CoordConverter.DataBounds2D);
                                    if (num46 < num47)
                                    {
                                        num46 = num47;
                                    }
                                    else if (num46 > maxX)
                                    {
                                        num46 = maxX;
                                    }
                                    double num49 = rc.ConvertX(num46);
                                    double num50 = d;
                                    double num51 = Math.Abs((double)(num49 - num28));
                                    if (seriesOverlap != 0.0)
                                    {
                                        double num52 = rc.ConvertY(y);
                                        double num53 = d * num5;
                                        if (seriesOverlap > 0.0)
                                        {
                                            num50 = num53 / ((num5 - (num5 * seriesOverlap)) + seriesOverlap);
                                        }
                                        else
                                        {
                                            num50 *= 1.0 + seriesOverlap;
                                        }
                                        double num54 = (num53 - num50) / ((double)(num5 - 1));
                                        rc.Rect = new Rect(Math.Min(num28, num49), (num52 - (0.5 * num53)) + (((num5 - num10) - 1) * num54), num51, num50);
                                    }
                                    else
                                    {
                                        rc.Rect = new Rect(Math.Min(num28, num49), num29 - (0.5 * num50), num51, num50);
                                    }
                                }
                                else
                                {
                                    double num55 = rc.GetMinY(CoordConverter.DataBounds2D);
                                    double maxY  = rc.GetMaxY(CoordConverter.DataBounds2D);
                                    if (num46 < num55)
                                    {
                                        num46 = num55;
                                    }
                                    else if (num46 > maxY)
                                    {
                                        num46 = maxY;
                                    }
                                    double num57 = rc.ConvertY(num46);
                                    double num58 = d;
                                    double num59 = Math.Abs((double)(num57 - num29));
                                    if (seriesOverlap != 0.0)
                                    {
                                        double num60 = rc.ConvertX(y);
                                        double num61 = d * num5;
                                        if (seriesOverlap > 0.0)
                                        {
                                            num58 = num61 / ((num5 - (num5 * seriesOverlap)) + seriesOverlap);
                                        }
                                        else
                                        {
                                            num58 *= 1.0 + seriesOverlap;
                                        }
                                        double num62 = (num61 - num58) / ((double)(num5 - 1));
                                        rc.Rect = new Rect((num60 - (0.5 * num61)) + (num10 * num62), Math.Min(num29, num57), num58, num59);
                                    }
                                    else
                                    {
                                        rc.Rect = new Rect(num28 - (0.5 * num58), Math.Min(num29, num57), num58, num59);
                                    }
                                }
                            }
                        }
                        rc.SetPoint(i, num28, num29);
                        if (pe != null)
                        {
                            Point point2 = new Point(num28, num29);
                            if ((pe is ICustomClipping) || clipBounds.Contains(point2))
                            {
                                if (double.IsNaN(naN))
                                {
                                    DataPoint dp = series.CreateDataPoint(si, i);
                                    base.RenderElement(objects, pe, series, rc, symbolShape, dp);
                                }
                                else if (((i == 0) || (Math.Abs((double)(point2.X - point.X)) > naN)) || ((Math.Abs((double)(point2.Y - point.Y)) > naN) || (i == (num16 - 1))))
                                {
                                    DataPoint point4 = series.CreateDataPoint(si, i);
                                    base.RenderElement(objects, pe, series, rc, symbolShape, point4);
                                    point = point2;
                                }
                            }
                        }
                    }

                    PlotElement element3 = base.RenderConnection(series, rc, si);
                    if (element3 != null)
                    {
                        series.Children.Insert(0, element3);
                    }

                    if (isClustered)
                    {
                        if (rc.ClusterPlotAreaIndex == 0)
                        {
                            num10++;
                        }
                        else
                        {
                            numArray2[rc.ClusterPlotAreaIndex]++;
                        }
                    }
                }
                si++;
            }
            return(objects.ToArray());
        }
Beispiel #4
0
        Rect IView2DRenderer.Measure(Size sz)
        {
            base.AnalyzeData(base.IsStacked);
            Rect   rect = new Rect();
            double num  = (Enumerable.Sum(NClustered(Utils.GetIsClustered(false, base.Symbol))) > 0) ? ((0.5 * GetClusterWidth()) * _dataInfo.DeltaX) : 0.0;
            double num2 = 0.0;

            if (num == 0.0)
            {
                num2 = Math.Max(GetMaxSymbolWidth(), _dataInfo.SymbolSize.Width);
            }
            double height = _dataInfo.SymbolSize.Height;

            if ((_dataInfo.nser > 0) && (_dataInfo.npts > 0))
            {
                double minY;
                double maxY;
                if (_dataInfo.ndim >= 2)
                {
                    rect.X     = _dataInfo.MinX;
                    rect.Width = _dataInfo.MaxX - _dataInfo.MinX;
                }
                else
                {
                    rect.X     = 0.0;
                    rect.Width = _dataInfo.npts - 1;
                }
                double num4 = base.Inverted ? sz.Height : sz.Width;
                if ((num2 > 0.0) && (num2 < num4))
                {
                    double num5 = (num4 / (num4 - num2)) - 1.0;
                    num = (num5 * rect.Width) * 0.6;
                }
                rect.X     -= num;
                rect.Width += 2.0 * num;
                if (rect.Width == 0.0)
                {
                    rect.X    -= 0.5;
                    rect.Width = 1.0;
                }
                if (base.IsStacked)
                {
                    if (base.IsStacked100)
                    {
                        minY = _dataInfo.MinVals[0] * 100.0;
                        maxY = _dataInfo.MaxVals[0] * 100.0;
                        if (minY == maxY)
                        {
                            minY = 0.0;
                            maxY = 100.0;
                        }
                    }
                    else
                    {
                        minY = _dataInfo.MinVals[0];
                        maxY = _dataInfo.MaxVals[0];
                        if (maxY < 0.0)
                        {
                            maxY = 0.0;
                        }
                        if (minY > 0.0)
                        {
                            minY = 0.0;
                        }
                    }
                }
                else
                {
                    minY = _dataInfo.MinY;
                    maxY = _dataInfo.MaxY;
                    if ((Chart.ChartType == ChartType.Column) || (Chart.ChartType == ChartType.Bar))
                    {
                        Chart visual = Chart;
                        if (visual != null)
                        {
                            double origin = BarColumnOptions.GetOrigin(visual);
                            if (((minY > origin) && (visual.View != null)) && (visual.View.AxisY != null))
                            {
                                if (double.IsNaN(visual.View.AxisY.LogBase))
                                {
                                    minY = origin;
                                }
                                else if (origin > 0.0)
                                {
                                    minY = origin;
                                }
                            }
                        }
                    }
                }
                if (minY == maxY)
                {
                    double num9 = (minY == 0.0) ? 0.5 : Math.Abs((double)(minY * 0.1));
                    minY -= num9;
                    maxY += num9;
                }
                rect.Y      = minY;
                rect.Height = maxY - minY;
                double num10 = 0.0;
                double num11 = base.Inverted ? sz.Width : sz.Height;
                if ((height > 0.0) && (height < num11))
                {
                    double num12 = (num11 / (num11 - height)) - 1.0;
                    num10 = (num12 * rect.Height) * 0.6;
                }
                rect.Y      -= num10;
                rect.Height += 2.0 * num10;
            }
            _rect = base.Inverted ? new Rect(rect.Y, rect.X, rect.Height, rect.Width) : rect;
            return(_rect);
        }
Beispiel #5
0
 protected void AnalyzeData(bool isStacked)
 {
     if (!_analyzed)
     {
         int num = Series.Count;
         _dataInfo.nser = num;
         _dataInfo.npts = 0;
         _dataInfo.ndim = 0;
         _dataInfo.ClearLimits();
         _dataInfo.SymbolMinSize = Size.Empty;
         _dataInfo.SymbolMaxSize = Size.Empty;
         _dataInfo.incX          = false;
         _dataInfo.hasNaN        = false;
         bool flag  = false;
         bool flag2 = IsStacked100;
         if (num > 0)
         {
             AnalyseNDimNPts();
             int        ndim      = _dataInfo.ndim;
             int        npts      = _dataInfo.npts;
             double[]   numArray  = new double[ndim];
             double[]   numArray2 = new double[ndim];
             double[]   numArray3 = new double[num];
             double[]   numArray4 = new double[num];
             int        nsg       = NStackGroups();
             StackedSum sum       = isStacked ? new StackedSum(nsg) : null;
             StackedSum sum2      = isStacked ? new StackedSum(nsg) : null;
             StackedSum sum3      = isStacked ? new StackedSum(nsg) : null;
             StackedSum sum4      = flag2 ? new StackedSum(nsg) : null;
             double     num5      = 0.0;
             double     num6      = 0.0;
             double     naN       = double.NaN;
             Size       size      = new Size();
             for (int i = 0; i < num; i++)
             {
                 DataSeries ds          = (DataSeries)Series[i];
                 bool       flag3       = ds.IsStacked;
                 bool       isClustered = ds.GetIsClustered(true);
                 int        stackGroup  = BarColumnOptions.GetStackGroup(ds);
                 if (ds is BubbleSeries)
                 {
                     Chart chart = _visual as Chart;
                     if (chart != null)
                     {
                         Size maxSize = ((BubbleSeries)ds).GetMaxSize(_dataInfo);
                         if (size.Width < maxSize.Width)
                         {
                             size.Width = maxSize.Width;
                         }
                         if (size.Height < maxSize.Height)
                         {
                             size.Height = maxSize.Height;
                         }
                         if (_dataInfo.SymbolMaxSize.IsEmpty)
                         {
                             _dataInfo.SymbolMaxSize = BubbleOptions.GetMaxSize(chart);
                         }
                         if (_dataInfo.SymbolMinSize.IsEmpty)
                         {
                             _dataInfo.SymbolMinSize = BubbleOptions.GetMinSize(chart);
                         }
                     }
                 }
                 double[,] values = ds.GetValues();
                 if (values != null)
                 {
                     int length = values.GetLength(0);
                     int num11  = values.GetLength(1);
                     if (((num11 >= 2) && (length >= 2)) && isClustered)
                     {
                         double num12 = 0.0;
                         for (int m = 0; m < (num11 - 1); m++)
                         {
                             if (!double.IsNaN(values[1, m]) && !double.IsNaN(values[1, m + 1]))
                             {
                                 num12 = Math.Abs((double)(values[1, m + 1] - values[1, m]));
                                 if (double.IsNaN(naN) || (num12 < naN))
                                 {
                                     naN = num12;
                                 }
                             }
                         }
                     }
                     ValueCoordinate[] valueCoordinates = ds.GetValueCoordinates(false);
                     for (int j = 0; j < valueCoordinates.Length; j++)
                     {
                         if ((valueCoordinates[j] == ValueCoordinate.X) && IsValidAuxAxis(ds.AxisX))
                         {
                             valueCoordinates[j] = ValueCoordinate.None;
                         }
                         else if ((valueCoordinates[j] == ValueCoordinate.Y) && IsValidAuxAxis(ds.AxisY))
                         {
                             valueCoordinates[j] = ValueCoordinate.None;
                         }
                     }
                     for (int k = 0; k < length; k++)
                     {
                         if ((k < valueCoordinates.Length) && (valueCoordinates[k] != ValueCoordinate.None))
                         {
                             for (int n = 0; n < num11; n++)
                             {
                                 double x = (length > 1) ? values[1, n] : ((double)n);
                                 if (double.IsNaN(values[k, n]))
                                 {
                                     _dataInfo.hasNaN = true;
                                 }
                                 else
                                 {
                                     if ((i == 0) && (n == 0))
                                     {
                                         numArray[k] = numArray2[k] = values[k, n];
                                     }
                                     else
                                     {
                                         if (values[k, n] > numArray[k])
                                         {
                                             numArray[k] = values[k, n];
                                         }
                                         if (values[k, n] < numArray2[k])
                                         {
                                             numArray2[k] = values[k, n];
                                         }
                                     }
                                     if (k == 0)
                                     {
                                         numArray3[i] += values[0, n];
                                         numArray4[i] += Math.Abs(values[0, n]);
                                     }
                                     else if ((flag && (k == 1)) && ((n > 0) && ((values[1, n] - values[1, n - 1]) < 0.0)))
                                     {
                                         flag = false;
                                     }
                                     if (((k == 0) && isStacked) && flag3)
                                     {
                                         if (flag2)
                                         {
                                             sum.Add(stackGroup, x, Math.Abs(values[0, n]));
                                             sum4.Add(stackGroup, x, values[0, n]);
                                         }
                                         else
                                         {
                                             sum.Add(stackGroup, x, values[0, n]);
                                             num5 = Math.Min(num5, sum[stackGroup, (double)n]);
                                             num6 = Math.Max(num6, sum[stackGroup, (double)n]);
                                         }
                                         if (values[0, n] > 0.0)
                                         {
                                             sum2.Add(stackGroup, x, values[0, n]);
                                         }
                                         else
                                         {
                                             sum3.Add(stackGroup, (double)n, values[0, n]);
                                         }
                                     }
                                 }
                             }
                             _dataInfo.UpdateLimits(valueCoordinates[k], numArray2[k], numArray[k]);
                         }
                     }
                     if (length < 2)
                     {
                         _dataInfo.UpdateLimits(ValueCoordinate.X, 0.0, (double)(num11 - 1));
                     }
                 }
             }
             if (isStacked && (npts > 0))
             {
                 if (flag2)
                 {
                     numArray2[0] = 0.0;
                     numArray[0]  = 0.0;
                     for (int num18 = 0; num18 < npts; num18++)
                     {
                         for (int num19 = 0; num19 < nsg; num19++)
                         {
                             if (sum[num19, (double)num18] != 0.0)
                             {
                                 double num20 = sum2[num19, (double)num18] / sum[num19, (double)num18];
                                 double num21 = sum3[num19, (double)num18] / sum[num19, (double)num18];
                                 if (num20 > numArray[0])
                                 {
                                     numArray[0] = num20;
                                 }
                                 if (num21 < numArray2[0])
                                 {
                                     numArray2[0] = num21;
                                 }
                             }
                         }
                     }
                 }
                 else
                 {
                     numArray[0]  = 0.0;
                     numArray2[0] = 0.0;
                     for (int num22 = 0; num22 < nsg; num22++)
                     {
                         double[] ys        = sum2.GetYs(num22);
                         double[] numArray7 = sum3.GetYs(num22);
                         for (int num23 = 0; num23 < ys.Length; num23++)
                         {
                             if (ys[num23] > numArray[0])
                             {
                                 numArray[0] = ys[num23];
                             }
                         }
                         for (int num24 = 0; num24 < numArray7.Length; num24++)
                         {
                             if (numArray7[num24] < numArray2[0])
                             {
                                 numArray2[0] = numArray7[num24];
                             }
                         }
                     }
                 }
             }
             _dataInfo.MaxVals    = numArray;
             _dataInfo.MinVals    = numArray2;
             _dataInfo.Sums       = numArray3;
             _dataInfo.SumsAbs    = numArray4;
             _dataInfo.Stacked    = sum;
             _dataInfo.DeltaX     = (double.IsNaN(naN) || (naN == 0.0)) ? 1.0 : naN;
             _dataInfo.SymbolSize = size;
             _dataInfo.incX       = flag;
         }
         _analyzed = true;
     }
 }