MS Chart Control系列标签定位

时间:2011-04-06 13:07:35

标签: c# label mschart series

我有一个甘特图(RangeBar)我使用MS Chart控件制作;对于一些较短的系列,标签显示在栏外;我更喜欢设置它,以便标签停留在栏内并被截断(省略号会很好)。有办法做到这一点吗?我一直在寻找图表和系列的属性多年来没有成功。

2 个答案:

答案 0 :(得分:3)

我认为您需要设置的属性为BarLabelStyle

例如

chart.Series["mySeries"]["BarLabelStyle"] = "Center";

请参阅此Dundas page,其中解释了MS Chart控件应该类似或相同的自定义属性。

答案 1 :(得分:0)

最后我用自己的方式自己动手(是的它很乱,我有时间会收拾它):

private static void Chart_PostPaint(object sender, ChartPaintEventArgs e)
    {
        Chart c = ((Chart)sender);
        foreach (Series s in c.Series)
        {
            string sVt = s.GetCustomProperty("PixelPointWidth");
            IGanttable ig = (IGanttable)s.Tag;
            double dblPixelWidth = c.ChartAreas[0].AxisY.ValueToPixelPosition(s.Points[0].YValues[1]) - c.ChartAreas[0].AxisY.ValueToPixelPosition(s.Points[0].YValues[0]);

            s.Label = ig.Text.AutoEllipsis(s.Font, Convert.ToInt32(dblPixelWidth)-dblSeriesPaddingGuess);

        }
    }


public static string AutoEllipsis(this String s, Font f, int intPixelWidth)
    {

        if (s.Length == 0 || intPixelWidth == 0) return "";


        var result = Regex.Split(s, "\r\n|\r|\n");

        List<string> l = new List<string>();
        foreach(string str in result)
        {
            int vt = TextRenderer.MeasureText(str, f).Width;
            if (vt < intPixelWidth)
            { l.Add(str); }
            else
            {
                string strTemp = str;
                int i = str.Length;

                while (TextRenderer.MeasureText(strTemp + "…", f).Width > intPixelWidth)
                {
                    strTemp = str.Substring(0, --i);
                    if (i == 0) break;
                }

                l.Add(strTemp + "…");
            }

        }
        return String.Join("\r\n", l);

    }

只要它是Post_Paint事件(如果您使用Paint事件,它将停止显示工具提示),这似乎非常愉快地工作