2010-01-12 158 views
3

我需要創建一個具有以下屬性的圖形:
X軸用於學校名稱。
Y軸是用於類名的。
在點(x,y)我需要把一個點表示它的顏色將代表學生的數量(黑色意味着更多的學生)。
我正在使用ZedGraph(使用該示例:http://zedgraph.org/wiki/index.php?title=Gradient-By-Value_Demo),但我不知道如何將點(並確定它是黑色級別)放在正確的位置(將其與學校名稱和班級名稱進行比較)。
此外,我不知道如何使X和Y軸顯示學校的名稱和班級的名稱。
我該怎麼做? (它不一定要在zedGraph中)。
非常感謝!使用zedGraph在C#中繪製圖形

回答

2

問題是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(); 
+0

Gacek你能幫我解決問題嗎?http://stackoverflow.com/questions/10222782/zedgraph-smoothly-move-y2axis-with-chart-line謝謝。 – amaranth 2012-04-19 09:34:23

+0

哇,對不起,我一直沒有使用zedgraph一年多了,我不記得很多......但我會試着看看 – Gacek 2012-04-19 11:25:03

0

我並沒有在我的項目中做到這一點,但我根據一些標準改變顏色。你應該很容易修改。在圖形類中查看stochfit.sourceforge.net中的svn庫。您可能還想看看我在倉庫中使用的zedgraph版本,修復了一些圖像捕捉和縮放bug。