Insert

Insert(int, ChartXValue)

Inserts the specified X value into the chart series at the specified index. If the series supports Y values and bubble sizes, they will be empty for the X value.

public void Insert(int index, ChartXValue xValue)

Remarks

The corresponding data point with default formatting will be inserted into the data point collection. And, if data labels are displayed, the corresponding data label with default formatting will be inserted too.

See Also


Insert(int, ChartXValueChartYValue)

Inserts the specified X and Y values into the chart series at the specified index.

public void Insert(int index, ChartXValue xValue, ChartYValue yValue)

Remarks

The corresponding data point with default formatting will be inserted into the data point collection. And, if data labels are displayed, the corresponding data label with default formatting will be inserted too.

See Also


Insert(int, ChartXValueChartYValue, double)

Inserts the specified X value, Y value and bubble size into the chart series at the specified index.

public void Insert(int index, ChartXValue xValue, ChartYValue yValue, double bubbleSize)

Remarks

The corresponding data point with default formatting will be inserted into the data point collection. And, if data labels are displayed, the corresponding data label with default formatting will be inserted too.

See Also