x轴上的自定义标签

时间:2013-09-20 08:15:18

标签: c# charts ms-word aspose asp.net-charts

我的图表预测了未来30年的价值。第一个值必须显示为第1年。然后是第5年,第10年......直到30年。但内部第一年为0且保持不变:

enter image description here

我尝试添加自定义标签,但它只会破坏其他标签: enter image description here

如果我将它添加到AxisX2而不是AxisX,它什么都不做。 以下是制作图表并添加以下行的代码:

public static Chart MakeChart(string title)
{
    var chart = new Chart();

    var area = new ChartArea("GrafiekGebied");

    foreach (var axis in area.Axes)
    {
        axis.TitleForeColor = defaultColor;
        axis.LineColor = defaultColor;
        axis.InterlacedColor = defaultColor;
        axis.LabelStyle.Font = letterType;
        axis.LabelAutoFitMinFontSize = (int)letterType.Size;
        axis.LabelAutoFitMaxFontSize = (int)letterType.Size;
        axis.MajorGrid.LineColor = defaultColor;
        axis.MajorTickMark.Enabled = false;
        axis.MinorGrid.LineColor = defaultColor;
        axis.MinorTickMark.LineColor = defaultColor;
    }

    CustomLabel firstXlabel = new CustomLabel();
    firstXlabel.FromPosition = 0;
    firstXlabel.ToPosition = 0;
    firstXlabel.RowIndex = 0; // Also tried 1
    firstXlabel.Text = "1jr";

    area.AxisY.LineWidth = 0;
    area.AxisY.LabelStyle.Format = "€{#,##}";
    area.AxisX.TextOrientation = TextOrientation.Horizontal;
    area.AxisX.CustomLabels.Add(firstXlabel); // Adding it to AxisX2 does nothing
    area.AxisX.IsMarginVisible = true;
    area.AxisX.MajorGrid.Enabled = false;
    area.AxisX.IntervalOffset = 1;
    area.AxisX.LabelStyle.Format = "{#}jr";
    area.AxisX.MajorTickMark.Enabled = true;
    area.AxisX2.LineWidth = 1;
    area.AxisX2.LineColor = Color.Green;

    var legend = new Legend();
    legend.LegendStyle = LegendStyle.Row;
    legend.Docking = Docking.Bottom;
    legend.DockedToChartArea = area.Name;
    legend.Font = lettering;
    legend.IsDockedInsideChartArea = false;

    chart.ForeColor = defaultColor;
    chart.Font.Name = lettering.FontFamily.Name;
    chart.Font.Size = new System.Web.UI.WebControls.FontUnit(lettering.Size);
    chart.Width = 280;
    chart.Height = 180;
    chart.Legends.Add(legend);
    chart.ChartAreas.Add(area);
    chart.BorderlineColor = defaultColor;
    chart.BorderlineWidth = 1;
    chart.BorderlineDashStyle = ChartDashStyle.Solid;
    chart.Titles.Add(title);

    return chart;
}

public static void AddData(Chart chart, ChartInput input)
{
    var line = new Series(input.Subtitle);
    line.ChartArea = chart.ChartAreas[0].Name;
    line.ChartType = SeriesChartType.Spline;
    line.Color = input.Color;
    line.BorderWidth = 3;
    line.MarkerStyle = MarkerStyle.Circle;
    line.MarkerSize = 7;
    line.MarkerStep = 5;

    for (int i = 0; i < input.Waarden.Length; i++)
    {
        line.Points.AddXY(i, input.Values[i]);
    }

    chart.Series.Add(line);
}

制作图表后,使用Aspose将其插入到Word文档中,但这与图表的制作方式无关。

1 个答案:

答案 0 :(得分:4)

这可以通过为每个x值添加自定义标签来实现,因此每年都可以。

Dim series1 As New Series("Series1")
series1.ChartType = SeriesChartType.Column

' Adding some points
series1.Points.AddXY(1, 1)
series1.Points.AddXY(2, 1)
series1.Points.AddXY(3, 1)

Chart1.Series.Add(series1)

' I manually set the maxium of the X axis
Chart1.ChartAreas("ChartArea1").AxisX.Interval = 1
Chart1.ChartAreas("ChartArea1").AxisX.Maximum = 4

Chart1.ChartAreas("ChartArea1").AxisX.CustomLabels.Add(0.5, 1.5, "yr1")
Chart1.ChartAreas("ChartArea1").AxisX.CustomLabels.Add(1.5, 2.5, "yr2")
Chart1.ChartAreas("ChartArea1").AxisX.CustomLabels.Add(2.5, 3.5, "yr3")

如果某个点的x值为“1”,那么您应该将自定义标签从“0.5”添加到“1.5”。这样就很好地融入了中心。