显示NET的模板MS图表

时间:2017-07-28 21:15:01

标签: .net grid series mschart

VB2010使用MS Chart Control:我认为我的问题是基本的,但还没有找到如何做到这一点。当表单首次加载时,图表控件不显示任何内容,甚至不显示网格。当我将点加载到我的系列中时,网格加上点数就会显示出来。

如何显示仅包含网格线的模板图表,以便用户可以看到存在将填充的图表。我确实尝试在我的一个系列中添加两个虚假点,然后禁用该系列以不显示这些点,但Chart控件并未将其视为渲染网格的原因。

感谢您的帮助。

编辑:感谢@baddack让我深思熟虑。 这是我做的:

在表单加载上创建一个虚假系列。本系列将保留在应用程序生命周期的图表中。

        Dim srs As New Series                           'create a new series
        cht.Series.Add(srs)                             'add series to chart
        srs.ChartType = SeriesChartType.Point           'it will be a point chart with one point (or you can add several points to define your display envelope)
        srs.Name = "bogus"                              'name of our bogus series
        srs.IsVisibleInLegend = False                   'do not show the series in the legend
        srs.Points.AddXY(25000, 1000)                   'this will be a point in the upper-right corner of the envelope you want to display
        srs.Points(0).MarkerColor = Color.Transparent   'no color for the marker
        srs.Points(0).MarkerSize = 0                    'no size for the marker
        chtObstacles.Series("bogus").Enabled = True     'name of the bogus series
        chtObstacles.Update()                           'update the chart

然后,当我运行我的过程时,我做的第一件事是清除所有其他系列并启用虚假系列,以便它可用于调整"空"网格。

        cht.Series("srs1").Points.Clear()
        cht.Series("srs2").Points.Clear()
        cht.Series("bogus").Enabled = True

然后运行为图表提供点的过程:

  if pointCount > 0 then
       'turn off the series so it will not be used in the grid sizing
       cht.Series("bogus").Enabled = False 

       'add points to the chart
       'code to add points to MS Chart
  endif

  cht.ChartAreas("chaMain").RecalculateAxesScale()  'we must recalculate the axes scale to reset the mins/maxs

  'resume updating UI
  cht.Series.ResumeUpdates()

  'force redraw of chart
  cht.Update()

1 个答案:

答案 0 :(得分:1)

您可以向图表添加空白点。这将使网格显示,但不显示任何点。

private void Form1_Load(object sender, EventArgs e)
{
    chart1.Series.Clear();
    SetChartAxisLines(chart1.ChartAreas[0]);

    Series s = new Series();
    chart1.Series.Add(s);
    s.Points.Add();
    s.Points[0].IsEmpty = true;
}

private void SetChartAxisLines(ChartArea ca)
{
    //X-Axis
    ca.AxisX.MajorGrid.LineColor = Color.DarkGray;
    ca.AxisX.MajorGrid.LineDashStyle = ChartDashStyle.Dash;
    ca.AxisX.MinorGrid.Enabled = true;
    ca.AxisX.MinorGrid.LineColor = System.Drawing.Color.Silver;
    ca.AxisX.MinorGrid.LineDashStyle = ChartDashStyle.Dot;

    //Y-Axis
    ca.AxisY.MajorGrid.LineColor = System.Drawing.Color.DarkGray;
    ca.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
    ca.AxisY.MinorGrid.Enabled = true;
    ca.AxisY.MinorGrid.LineColor = System.Drawing.Color.Silver;
    ca.AxisY.MinorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dot;
}

Example