我有这个ZedGraph控件代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using ZedGraph;
using Extracting_Frames;

namespace Lightnings_Extractor
{
    public partial class Histogram_Graphs : Form
    {

        public long[] histogram;

        public Histogram_Graphs()
        {
            InitializeComponent();

            histogram = Form1.GetHistogramValue;
            this.DoubleBuffered = true;
            CreateGraph_GradientByZBars(zedGraphControl1);

        }

        private void Histogram_Graphs_Load(object sender, EventArgs e)
        {

        }

        private void CreateGraph_GradientByZBars(ZedGraphControl z1)
        {
            GraphPane myPane = z1.GraphPane;
            myPane.Title.Text = "Demonstration of Multi-Colored Bars with a Single BarItem";
            myPane.XAxis.Title.Text = "Bar Number";
            myPane.YAxis.Title.Text = "Value";

            PointPairList list = new PointPairList();
            Random rand = new Random();

            for (int i = 0; i < histogram.Length; i++)
            {
                double x = (double)i + 1;
                //double y = (double)i + 1;//rand.NextDouble() * 1000;
                double z = i / 4.0;
                list.Add(x, histogram[i], z);
            }

            BarItem myCurve = myPane.AddBar("Multi-Colored Bars", list, Color.Blue);
            Color[] colors = { Color.Red, Color.Yellow, Color.Green, Color.Blue, Color.Purple };
            myCurve.Bar.Fill = new Fill(colors);
            myCurve.Bar.Fill.Type = FillType.GradientByZ;

            myCurve.Bar.Fill.RangeMin = 0;
            myCurve.Bar.Fill.RangeMax = 4;

            myPane.Chart.Fill = new Fill(Color.White, Color.FromArgb(220, 220, 255), 45);
            myPane.Fill = new Fill(Color.White, Color.FromArgb(255, 255, 225), 45);
            // Tell ZedGraph to calculate the axis ranges
            z1.AxisChange();
        }
    }
}


问题出在循环中:

for (int i = 0; i < histogram.Length; i++)
                {
                    double x = (double)i + 1;
                    //double y = (double)i + 1;//rand.NextDouble() * 1000;
                    double z = i / 4.0;
                    list.Add(x, histogram[i], z);
                }


Befote Y是随机的。现在我想使用直方图列表中的值。
因此,例如在index [0]中有一个数字:34118然后在index 1 1521中有index [2] 522
列表中有256个索引。

当我看到图形时,看到吟游诗人的身高很短。

在图的开头,我看到一条线很高,但是接下来的所有线都非常短。
在Y轴上,我看到的数字从0到40,在x轴上,我看到的数字从0到300。

在Y轴上我应该看到0到我猜直方图中的最大值的数字,在X轴上我应该看到0到25​​6的数字。

这里大混乱。

我该如何解决?

谢谢。

最佳答案

您的代码中没有错误。您的图形正在准确地绘制histogram[]数组中的值。

您提到您的数组包含以下值:

histogram[0] = 34118
histogram[1] = 1521
histogram[2] = 522
...


如果您检查屏幕截图,则图是正确的。绘制的第一个竖线非常高,其他剩余值(符合您的期望)接近1x10 ^ 3波段。您的histogram[]数组很可能是用错误的数据或索引[0]处的错误数据初始化的。

我只能从代码和数据的这一侧来推测histogram[0]中的值的重要性,但是也许您正在接收一个数组,该数组具有索引[0]中所有剩余数据的总和。

作为对期望的快速检查,如果将循环更改为从索引[1]而不是[0]开始,您将看到您正在使用的绘图控件将对所有其他预期接近值的值正确执行。 1x10 ^ 3波段,您应该检查填充您的histogram数组的数据源以查看第一个数据点是否相关或已被设置为错误的值。

for (int i = 1; i < histogram.Length; i++)
{
    double x = (double)i + 1;
    //double y = (double)i + 1;//rand.NextDouble() * 1000;
    double z = i / 4.0;
    list.Add(x, histogram[i], z);
}

关于c# - 为什么在ZedGraph中Y轴很小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13111010/

10-10 09:42