0

我希望我的图表从 0,0 开始,但现在它从数据开始的时间开始(因为我不知道 xdatamember 的更好选择是什么来获得我想要的结果。有什么建议吗?

        private void Form1_Load(object sender, EventArgs e)
        {
        dataAdapter = new SqlDataAdapter(strSQL, strCon);
        commandBuilder = new SqlCommandBuilder(dataAdapter);

        // Populate a new data table and bind it to the BindingSource.
        DataTable table = new DataTable();
        table.Locale = System.Globalization.CultureInfo.InvariantCulture;
        dataAdapter.Fill(table);
        bindingSource.DataSource = table;

        // Resize the DataGridView columns to fit the newly loaded content.
        dataGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader);
        // you can make it grid readonly.
        dataGridView.ReadOnly = true;
        // finally bind the data to the grid
        dataGridView.DataSource = bindingSource;
        GraphPane myPane = height.GraphPane;

        // Create a new DataSourcePointList to handle the database connection
        DataSourcePointList dspl = new DataSourcePointList();

        // Specify the table as the data source
        dspl.DataSource = table;

        dspl.XDataMember = "age";
        dspl.YDataMember = "height";

        LineItem Curve1 = myPane.AddCurve("student 1", dspl, Color.pink, SymbolType.None);
        height.AxisChange();
        myPane.Chart.Fill = new Fill(Color.White, Color.LightGray, 45.0F);

        // set the title and axis labels
        myPane.Title.Text = "student heights";
        myPane.XAxis.Title.Text = "age";
        myPane.YAxis.Title.Text = "height";

        myPane.XAxis.Type = AxisType.Date;
    }
4

1 回答 1

2

首先,我快速搜索了这类东西,发现了这个:Lock axis in ZedGraph

您可以将 XAxis.Min 和 YAxis.Min 设置为您希望显示为相应轴的最小值的任何值。我的测试代码如下所示:

//static ZedGraph.ZedGraphControl graph = new ZedGraph.ZedGraphControl();
ZedGraph.GraphPane pane = graph.GraphPane;
pane.XAxis.Scale.Min = 0.0;
graph.AxisChange();
graph.RestoreScale(pane);
graph.ZoomOut(pane);
于 2012-08-03T17:19:26.940 回答