我需要在x轴上的Microsoft图表中显示两个系列。我有两个不同的日期期间的两个不同的数据表。我还需要将日期显示为不同系列的工具提示。
答案 0 :(得分:0)
此处的示例(并下载)MSChart Samples
答案 1 :(得分:0)
简单折线图显示去年销售额与今年销售额的条形图。
chart1.Series.Clear();
string[] months = { "Jan", "Feb", "Mar", "Apr" };
double[] thisYearSales = { 10000.23, 98000, 95876, 78097 };
double[] lastYearSales = { 99000, 99000, 90876, 88097 };
Series thisYear = chart1.Series.Add("this year");
thisYear.Points.DataBindXY(months, thisYearSales);
Series lastYear = chart1.Series.Add("last year");
lastYear.Points.DataBindXY(months, lastYearSales);
lastYear.ChartType = SeriesChartType.Line;