我在工程里添加了MS CHART 控件,不知道用哪个函数设置他的show ers和 series in rows属性(已经生成了包装该控件的类)

解决方案 »

  1.   

    上面问题搞定,但又遇新问题,用GetStacking()读Stacking属性时,提示属性只写,可在控件自己的属性设置页中却可以得到Stacking属性,谁知道解决办法,分继续加!
      

  2.   

    up一下,我也在学用chart控件好像ms-graphi控件更强一点
      

  3.   

    vb的例子:
    查msdn把
    Visual Basic: MSChart Control   SeriesMarker Object
    Describes a er that identifies all data points within one series on a chart.Syntax
    SeriesMarkerExample
    The following example sets er parameters for all series in a chart.Private Sub Command1_Click()
       Dim serX As series
       ' Show ers and unshow the lines for all series.
       MSChart1.chartType = VtChChartType2dLine
       For Each serX In MSChart1.Plot.SeriesCollection
          serX.SeriesMarker.Show = True
          serX.ShowLine = False
       Next
    End Sub
      

  4.   

    MSChart使用示例 http://www.vccode.com/file_show.php?id=2396
      

  5.   

    读Stacking属性还是没有解决,不只是不是ms chart的一个bug.