我得到了一张看起来像这样的表:
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轴标签。这甚至可能吗?我不相信它,因为数据点ca只有两个值
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
}
编辑:我相信可以通过为每种类型制作一个系列来创建这样的图表,并在Date
的x轴上绘制图表。这是唯一的方法吗?
答案 0 :(得分: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);