我正在使用 Teechart 版本的 .Net 和 VS2005。
如果 X 轴的数据为空,我不想显示数据。
我已经使用过 Teechart 功能的 Axis Break 工具。但是图表中有很多空数据。我需要另一个答案。
我怎样才能做到这一点?
请帮我!!!
我的代码:
datatable dt = new datatable();
Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line();
TChart1.Series.Add(line);
Steema.TeeChart.Axis axis = new Steema.TeeChart.Axis();
TChart1.Axes.Custom.Add(axis);
axis.StartPosition = 9;
axis.EndPosition = 11;
axis.Labels.Items.Add(0, " ");
axis.Labels.Items.Add(1, " ");
axis.Labels.Items[0].Visible = true;
axis.Labels.Items[1].Visible = true;
axis.Title.Caption = "A";
axis.Title.Font.Color = Color.Red;
DataRow row;
row = dt.NewRow();
row["X"] = "1"; //next input : 2, 3, 8, 9, 10
row["Y"] = "1"; //next input : 1, 1, 0, 0, 0
dt.Rows.Add(row);
TChart1.Series[0].XValues.DataMember = "X";
TChart1.Series[0].YValues.DataMember = "Y";
TChart1.Series[0].DataSource = dt;