MS Chart显示自定义标签和隐藏轴标签

时间:2013-10-15 11:45:38

标签: c# charts

我在Visual Studio 2008(C#)中使用X轴上的自定义标签构建ASP.NET图表(System.Web.UI.DataVisualization.Charting.Chart)。我想隐藏自动生成的轴标签,只显示我的自定义标签。这样做的最佳方式是什么?

如果我设置了Axis属性LabelStyle.Enabled = false,那么我的自定义标签也会被隐藏。

更新:通过将IntervalOffset属性设置为1000,它会将自动标签移出图表。但是,图表底部与自定义标签之间现在存在差距。

3 个答案:

答案 0 :(得分:1)

找到答案:为我的自定义标签设置RowIndex为0。现在事情就好了。

答案 1 :(得分:0)

我使用customlabel和tag列表解决了这个问题。我有两个功能:一个添加customlabel列表,另一个删除customlabel列表。

    /// <summary>
    /// Add a list of CustomLabel to X Axis
    /// </summary>
    /// <param name="customLabelList">List of custom label</param>
    /// <param name="chartArea">Destination ChartArea</param>
    /// <param name="tag">Tag tha unique identify the custom label list</param>
    /// <param name="rowIndex"></param>
    public void AddAxisXCustomLabel(List<CustomLabel> customLabelList, string chartArea, string tag,int rowIndex)
    {
        foreach (CustomLabel cl in customLabelList)
        {
            cl.RowIndex = rowIndex;
            cl.Tag = tag;
            chart.ChartAreas[chartArea].AxisX.CustomLabels.Add(cl);
        }
    }
    /// <summary>
    /// Remove custom label from a list of custom label
    /// </summary>
    /// <param name="chartArea">Destination ChartArea</param>
    /// <param name="tag">Tag tha unique identify the custom label list</param>
    public void RemoveCustomLabelByTag(string chartArea,string tag)
    {
        for (int i = (chart.ChartAreas[chartArea].AxisX.CustomLabels.Count-1); i > -1; --i)
        { 
            CustomLabel cl = chart.ChartAreas[chartArea].AxisX.CustomLabels[i];
            if (cl.Tag.Equals(tag))
            {
                chart.ChartAreas[chartArea].AxisX.CustomLabels.RemoveAt(i);
            }
        }
     }

答案 2 :(得分:0)

您可以使用

series.LabelForeColor = Color.Transparent