2013-03-28 113 views
2

這是我目前有:不均勻(自定義)間隔

Problem Statement

我需要什麼,是有以下不等的間隔(垂直線& x軸標籤):

1) 1 (i.e. must not cross at 0) 
2) 1.5 
3) 2.5 
4) 3.5 
5) 4 

有沒有辦法做到這一點?即使它是一個額外的系列或其他東西 - 雖然我希望這是與IntervalOffset有關,但我不能讓它做我想做的。

目前,我只是有:

chartarea.AxisX.Maximum = 4; 
chartarea.AxisX.Minimum = 1; 
chartarea.AxisX.Interval = 1; 

回答

1

這是被要求:

// set the max & min, with an interval of 1 which is offset by 0.5 
// this gives the correct start (1), and three .5 intervals 
// however, it doesn't give the closing vertical line at 4 
chartarea.AxisX.Maximum = 4; 
chartarea.AxisX.Minimum = 1; 
chartarea.AxisX.Interval = 1; 
chartarea.AxisX.IntervalOffset = 0.5; 

// enable a secondary y axis for the line at 4 
chartarea.AxisY2.Enabled = AxisEnabled.True; 
// switch of all tickmarks & gridlines 
chartarea.AxisY2.MajorTickMark.Enabled = false; 
chartarea.AxisY2.MinorTickMark.Enabled = false; 
chartarea.AxisY2.MajorGrid.Enabled = false; 
chartarea.AxisY2.MinorGrid.Enabled = false; 
chartarea.AxisY2.LabelStyle.Enabled = false; 
// set the correct colour & line style 
chartarea.AxisY2.LineColor = Color.FromArgb(160, 160, 160); 
chartarea.AxisY2.LineDashStyle = ChartDashStyle.Dash; 

// add custom labels for the 5 points/lines 
chartarea.AxisX.CustomLabels.Add(0.9, 1.1, "1"); 
chartarea.AxisX.CustomLabels.Add(1.4, 1.6, "1.5"); 
chartarea.AxisX.CustomLabels.Add(2.4, 2.6, "2.5"); 
chartarea.AxisX.CustomLabels.Add(3.4, 3.6, "3.5"); 
chartarea.AxisX.CustomLabels.Add(3.9, 4.1, "4"); 

瞧: (雖然我的數據已經改變)

enter image description here