1

我得到了一张看起来像这样的桌子:

 Date  |             1/1/13             |             1/8/13             | ...
       |  Group1  |  Group2  |  Group3  |  Group1  |  Group2  |  Group3  | ...
Type1  |     1    |     2    |     3    |     5    |     6    |     7    | ...
Type2  |     6    |     5    |     4    |     4    |     8    |     0    | ...
Type3  |     7    |     8    |     9    |     9    |     3    |     2    | ...

我的任务是使用 MS Chart 创建一个图表来表示这些数据。该表表示在显示日期结束的一周内某个组已完成的任务(Type1/2/3)。我的想法是创建一个条形图,首先按日期分组,然后按组。我希望我的 x 轴看起来像上面的表格标题。

我查找了辅助轴主题,我能找到的只是辅助 Y 轴。这与我想要的不同,因为它代表了每个 y 轴上的不同系列。我希望能够代表一个系列,但有两个 x 轴标签。这甚至可能吗?我不相信它是,因为数据点只有两个值

var chart = new Chart();
chart.ChartAreas.Add(new ChartArea());
var series= new Series("series");
series.ChartType = SeriesChartType.Column;
series.XAxisType = AxisType.Primary;
//Magic secondary axis code    

//Add data points

chart.Series.Add(series);

仅供参考,以下是我计划使用的类。

课程

public class ChartGroup
{
    public string GroupName
    public int Type1
    public int Type2
    public int Type3
}
public class ChartDate
{
    public DateTime Date
    public List<ChartGroup> GroupData
}
public class Chart
{
    public List<ChartDate> ChartData
}

编辑:我确实相信可以通过为每种类型制作一个系列并将其绘制在 x 轴上来创建这样的图表Date。这是唯一的方法吗?

4

1 回答 1

4

可以有辅助 X 轴。这是一个示例(这不完全是您想要做的,但应该向您展示如何使用辅助 X 轴):

DateTime firstDay = new DateTime(2013, 01, 01);
DateTime secondDay = new DateTime(2013, 01, 02);

int[] group1 = new int[6] { 1, 6, 7, 5, 4, 9 };
int[] group2 = new int[6] { 2, 5, 8, 6, 8, 3 };

DateTime[] days = new DateTime[6] { firstDay, firstDay, firstDay, secondDay, secondDay, secondDay};

chart.Series.Add(new Series("Group 1"));

chart.Series[0].Points.DataBindXY(days, group1);
chart.Series[0].ChartType = SeriesChartType.Column;

chart.Series.Add(new Series("Group 2"));
chart.Series[1].Points.DataBindXY(days, group2);
chart.Series[1].ChartType = SeriesChartType.Column;

double start = chart.Series[0].Points[0].XValue;
double end = chart.Series[0].Points[chart.Series[0].Points.Count -1].XValue;
double half = (start + end) / 2;

chart.ChartAreas[0].AxisX2.Enabled = AxisEnabled.True;

chart.ChartAreas[0].AxisX2.CustomLabels.Add(start, end, "General Label", 0, LabelMarkStyle.Box);
chart.ChartAreas[0].AxisX2.CustomLabels.Add(start, half, "Day 1", 1, LabelMarkStyle.LineSideMark);
chart.ChartAreas[0].AxisX2.CustomLabels.Add(half, end, "Day 2", 1, LabelMarkStyle.LineSideMark);
于 2013-06-24T18:03:16.937 回答