1

谁能让我知道如何使用 CSeriesStatsTool 来获取平均值、中位数、标准等数据。开发。

谢谢阿克谢

4

1 回答 1

1

统计工具可以轻松地将基本功能添加到系列中,例如平均值、趋势等。还可以显示包含所选系列基本统计信息的报告。您可以在 TeeChartActiveX Demo 项目中找到一个简单的示例,具体来说,All feature\Tools\SeriesStats或查看下一个简单的代码示例:

  Private Sub Form_Load()
    With TChart1
        .AddSeries scLine
        .Series(0).FillSampleValues 100
        .Tools.Add tcSeriesStats
        .Tools.Items(0).asSeriesStats.Series = TChart1.Series(0)
        ' Add a series to be used for an Average Function
        .AddSeries scLine
        'Define the Function Type for the new Series
        .Series(1).SetFunction tfAverage
        .Series(1).DataSource = .Series(0)
     Text1.Text = .Tools.Items(0).asSeriesStats.Statistics.Text
    End With

End Sub

我希望会有所帮助

谢谢,

于 2013-10-01T14:52:27.847 回答