0

I have an MS Chart. My code is the following:

chart.Series[chartType].Points.DataBindXY(xValues, xCaption, yValues, yCaption);
chart.ChartAreas[0].AxisX.LabelStyle.Format = "CustomAxisXFormat";
chart.FormatNumber += new EventHandler<FormatNumberEventArgs>(chart_FormatNumber);

Then

private void chart_FormatNumber(object sender, FormatNumberEventArgs e)
{
    if (e.ElementType == ChartElementType.AxisLabels &&
        e.Format == "CustomAxisXFormat")
    {
        e.LocalizedValue = string.Format("{0:hh tt}", new DateTime(1, 1, 2, (int)e.Value, 0, 0).AddHours(-1));
    }
}

xValues and yValues are are arrays of ints.
The problem I am having is, if xValues = int[]{1,2,3}, when chart_FormatNumber handles the event, the values (e.Value) change to {2,3,4}.
So have to do a subtraction there to make it the correct value.
Can somebody tell me what is going on and/or how to stop MSChart from changing my values?

4

1 に答える 1

1

さて、頭をかいた後、私は何が起こっているのかを理解しました。xパラメーターはintです。MSチャートは、x軸の範囲に+1と-1を追加していました。私が提供していたx値はでしたxValues = int[]{1,2,3}chart_FormatNumber()私は私{0,1,2,3,4}を投げ捨てていたものを手に入れていました。

于 2012-08-05T15:42:08.507 に答える