0
的頭銜,我想改變我的Chart Control
標題:如何更改圖表控件
Title title = chart1.Titles.Add("Test");
Series s = new Series();
s.Color = Color.Blue;
s.ChartType = SeriesChartType.Line;
s.BorderWidth = 3;
s.Points.Add(new DataPoint(0.8, 3.2));
s.Points.Add(new DataPoint(0.83, 6.5));
s.Points.Add(new DataPoint(0.9, 12.9));
s.Points.Add(new DataPoint(1, 25.8));
s.Points.Add(new DataPoint(1.1, 29));
s.Points.Add(new DataPoint(1.2, 54.8));
s.Points.Add(new DataPoint(1.4, 58.1));
chart1.Series.Add(s);
chart1.Series.Add(s);
chart1.ChartAreas[0].AxisX.MajorGrid.LineColor = Color.White;
chart1.ChartAreas[0].AxisY.MajorGrid.LineColor = Color.White;
chart1.ChartAreas[0].AxisX.Maximum = 4;
chart1.ChartAreas[0].AxisX.Interval = 1;
chart1.ChartAreas[0].AxisX.IsStartedFromZero = true;
chart1.ChartAreas[0].AxisX.IntervalOffsetType = DateTimeIntervalType.Number;
目前,我想改變的標題是Series1
我已經試過Title title = chart1.Titles.Add("Test")
但Series1
標題仍然存在。
編輯:
後:
s.Legend = "DifferentLegend";
chart1.Series.Add(s);
這是結果:
看到我的更新.. – user3271698
@ user3271698:嘗試上面的更新版本。如果你關注這個鏈接,這些都是在文檔中。祝你好運。 – Baldrick
現在表格變小了,只有在右半邊仍然存在Series1 – user3271698