有没有办法隐藏ms图表中的非自定义标签?

时间:2016-06-17 10:36:57

标签: c# winforms charts mschart

我有一个很好的带有属性的MS Chart图表

 chart1.Series["Series1"].IsXValueIndexed=true;

但是在X轴中我得到了索引值,因为我在运行时更改了AxisX.Maximum。 What I get as result

当我设置

chart1.Series["Series1"].IsXValueIndexed=false;

我得到没有索引标签的X轴,但在运行时它会移动,我得到没有标签的X轴。enter image description here

是否可以在没有索引标签的情况下显示标签?

获取数据点的功能

private DataPoint GetDataPoint(string xValue,double yHigh,double yLow,double yOpen,double yClose)
    {
        DataPoint dataPoint = new DataPoint(0, new double[] {yHigh, yLow, yOpen, yClose})
        {
            Color = (yClose - yOpen > 0) ? _bullBarColor : _bearBarColor,
            AxisLabel = xValue
        };

        return dataPoint;
    }

其中xValue就像" 15.10.1990"

0 个答案:

没有答案