我可以通过更改图表下方文本框(X-min和X-max)中的值来操纵x轴的比例。最小值和最大值始终四舍五入为10,可以整数除以余数。 (858获得860和-107获得-110)。现在我正在寻找一种解决方案来获得X轴刻度,它总是在X点处有一条线" 0" (图中标记为红色)。
我正在使用C#。
以下是代码的一部分:
private void textBoxXmax_TextChanged(object sender, EventArgs e)
{
double max, min;
Double.TryParse(this.textBoxXmin.Text, out min);
//checks if the Entering is a double number and if it is greater than the min value
if (Double.TryParse(this.textBoxXmax.Text, out max) && max > chartTest.ChartAreas[0].AxisX.Minimum)
{
max = Math.Round(max / 10) * 10; //round to tens (113->110)
//MessageBox.Show(x.ToString());
this.textBoxXmax.BackColor = Color.White;
chartTest.ChartAreas[0].AxisX.Maximum = max;
//chartCharacteristicCurvesResistanceThermometer.ChartAreas[0].AxisX.Interval = (max-min)/10;
//Problem should be here
//set the YScaleMax
changeYScala(chartTest);
}
else
//if not the textbox is highlighted
this.textBoxXmax.BackColor = Color.Orange;
//double y;
//checks if the Entering is a double number and if it is smaler than the max value
if (Double.TryParse(this.textBoxXmin.Text, out min) && min < chartTest.ChartAreas[0].AxisX.Maximum)
{
min = Math.Round(min / 10) * 10; //round to tens (113->110)
this.textBoxXmin.BackColor = Color.White;
chartTest.ChartAreas[0].AxisX.Minimum = min;
//same calculation for Interval here
changeYScala(chartTest);
}
else
//if not the textbox is highlighted
this.textBoxXmin.BackColor = Color.Orange;
}
答案 0 :(得分:2)
您可以使用chart.ChartAreas[0].AxisX.IntervalOffset
更改间隔的偏移量,另外我通过反复试验找到了这个,我没有任何来源为什么会这样,但正确的偏移似乎是:
chart.ChartAreas[0].AxisX.IntervalOffset =
(-chart.ChartAreas[0].AxisX.Minimum) % chart.ChartAreas[0].AxisX.Interval;
此解决方案要求您手动设置AxisX.Minimum
(如果设置为自动AxisX.Minimum
则返回NaN)。
修改:还要求您将chart.ChartAreas[0].AxisX.Interval
设置为自动