Updates the given chart with the specified bracket.

Namespace:  CenterSpace.NMath.Charting.Microsoft
Assembly:  NMathChartMicrosoft (in NMathChartMicrosoft.dll) Version: 5.1.0.0

Syntax

C#
public static void Update(
	ref Chart chart,
	Bracket bracket,
	int numInterpolatedValues
)
Visual Basic (Declaration)
Public Shared Sub Update ( _
	ByRef chart As Chart, _
	bracket As Bracket, _
	numInterpolatedValues As Integer _
)
Visual C++
public:
static void Update(
	Chart^% chart, 
	Bracket^ bracket, 
	int numInterpolatedValues
)

Parameters

chart
Type: Chart %
A chart.
bracket
Type: CenterSpace.NMath.Analysis..::.Bracket
The bracket, with contained function.
numInterpolatedValues
Type: System..::.Int32
The number of interpolated values. The bracket Lower, Interior, and Upper values may additionally be inserted into the interpolated series.

Remarks

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.

See Also