This example exports curve fit results to a table.
StraightLineFittingModel straightLineFit =
plot. FittingModels.AddNew<StraightLineFittingModel>();
// Get the results as a data source
DataSource dataSource = straightLineFit.GetResultsDataSource();
// Create a table from the data source
dataManager.Tables.Add("curve fit results", dataSource);