使用zedGraph在C#中绘制图形

时间:2010-01-12 14:51:32

标签: c# graph zedgraph

我需要创建一个具有以下属性的图形:
X轴用于学校名称 Y轴用于班级名称 在Point(x,y)中,我需要添加一个点,它的颜色代表学生数量(颜色越深意味着越多学生)。
我正在使用ZedGraph(使用该示例:http://zedgraph.org/wiki/index.php?title=Gradient-By-Value_Demo),但我不知道如何将点(并确定它的暗级)放在正确的位置(将其与学校的名称和班级名称进行比较) )。
另外,我不知道如何让X和Y轴显示学校的名字和班级名称 我怎样才能做到这一点? (它不必在zedGraph中。) 非常感谢!

2 个答案:

答案 0 :(得分:3)

问题在于ZedGraph以一种有点奇怪的方式处理文本类型的比例。因此,当你有两种文本类型的比例时,几乎不可能正确显示数据。

但你可以稍微欺骗ZG。

整个技巧是使用隐藏比例的坐标显示数据,同时显示第二个假比例。

string[] schools = { "A", "B", "C" };
string[] classes = { "cl. 1", "cl. 2", "cl. 3" };

var pane = zg1.GraphPane;
Random x = new Random();

// Hide the basic scale, show the second with text labels
pane.X2Axis.Type = AxisType.Text;
pane.X2Axis.IsVisible = true;
pane.Y2Axis.Type = AxisType.Text;
pane.Y2Axis.IsVisible = true;
pane.XAxis.Scale.IsVisible = false;
pane.YAxis.Scale.IsVisible = false;

pane.X2Axis.Scale.TextLabels = schools;
pane.Y2Axis.Scale.TextLabels = classes;

// Main problem - synchronize the scales correctly            
pane.XAxis.Scale.Min = -0.5;
pane.XAxis.Scale.Max = schools.Count() - 0.5;
pane.YAxis.Scale.Min = -0.5;
pane.YAxis.Scale.Max = classes.Count() - 0.5;

pane.YAxis.MajorGrid.IsZeroLine = false;

// generate some fake data
PointPairList list = new PointPairList();
   for(int i=0;i<schools.Count();i++)
      for (int j = 0; j < classes.Count(); j++)
      {
          list.Add(new PointPair(i, j, x.Next(30)));
      }

   var pointsCurve = pane.AddCurve("", list, Color.Transparent);
   pointsCurve.Line.IsVisible = false;
   // Create your own scale of colors.
   pointsCurve.Symbol.Fill = new Fill(new Color[] { Color.Blue, Color.Green, Color.Red });
   pointsCurve.Symbol.Fill.Type = FillType.GradientByZ;
   pointsCurve.Symbol.Fill.RangeMin = 0;
   pointsCurve.Symbol.Fill.RangeMax = 30;
   pointsCurve.Symbol.Type = SymbolType.Circle;

            pane.AxisChange();
            zg1.Refresh();

答案 1 :(得分:1)

我在项目中没有做到这一点,但我确实根据某些标准更改了颜色。你应该很容易修改。在图形类中查看stochfit.sourceforge.net中的svn depot。您可能还想查看我的软件仓库中的zedgraph版本,修复了一些图像捕获和缩放错误。