我做好的曲线图,,但不知道如何将曲线所代表的数值显示在曲线的各个节点上,,
真是郁闷,大虾请多指教!

解决方案 »

  1.   

    一般形式:
    With Chart_Name
            For Row = 1 To 12
                .Row = Row
                .data = Month_Fee(Row - 1)
                .RowLabel = Str(Row) + "月"
                With .Plot.SeriesCollection(Row)
                    .DataPoints(-1).DataPointLabel.LocationType = VtChLabelLocationTypeAbovePoint
                    .SeriesMarker.Auto = False
                    .DataPoints(-1).Marker.Style = VtMarkerStyle3dBall
                    .DataPoints(-1).Marker.Size = 70
                    .SeriesMarker.Show = True
                End With
            Next Row
        End With