Updates the given chart with the specified distribution.
Namespace:
CenterSpace.NMath.Charting.MicrosoftAssembly: NMathStatsChartMicrosoft (in NMathStatsChartMicrosoft.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public static void Update( ref Chart chart, ChiSquareDistribution dist, NMathStatsChart..::.DistributionFunction function, int numInterpolatedValues ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub Update ( _ ByRef chart As Chart, _ dist As ChiSquareDistribution, _ function As NMathStatsChart..::.DistributionFunction, _ numInterpolatedValues As Integer _ ) |
| Visual C++ |
|---|
public: static void Update( Chart^% chart, ChiSquareDistribution^ dist, NMathStatsChart..::.DistributionFunction function, int numInterpolatedValues ) |
Parameters
- chart
- Type:
Chart
%
A chart.
- dist
- Type: CenterSpace.NMath.Stats..::.ChiSquareDistribution
The distribution.
- function
- Type: CenterSpace.NMath.Charting.Microsoft..::.NMathStatsChart..::.DistributionFunction
The distribution function to plot.
- numInterpolatedValues
- Type: System..::.Int32
The number of interpolated values.
Return Value
A new chart.
Remarks
Plots the specified function of the given distribution for 0.0001 <= p <= 0.9999.
A new, default ChartArea is added if one does not exist, otherwise chart.ChartAreas[0] is used. Axis titles, and DefaultAxisTitleFont and DefaultMajorGridLineColor, only have an effect if a new ChartArea is added.
Titles are added only if chart does not currently contain any titles.
chart.Series[0] is replaced, or added if necessary.
A new, default ChartArea is added if one does not exist, otherwise chart.ChartAreas[0] is used. Axis titles, and DefaultAxisTitleFont and DefaultMajorGridLineColor, only have an effect if a new ChartArea is added.
Titles are added only if chart does not currently contain any titles.
chart.Series[0] is replaced, or added if necessary.