insert method

insert(index, xValue)

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.

insert(index: number, xValue: Aspose.Words.Drawing.Charts.ChartXValue)
ParameterTypeDescription
indexnumber
xValueChartXValue

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.

insert(index, xValue, yValue)

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

insert(index: number, xValue: Aspose.Words.Drawing.Charts.ChartXValue, yValue: Aspose.Words.Drawing.Charts.ChartYValue)
ParameterTypeDescription
indexnumber
xValueChartXValue
yValueChartYValue

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.

insert(index, xValue, yValue, bubbleSize)

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

insert(index: number, xValue: Aspose.Words.Drawing.Charts.ChartXValue, yValue: Aspose.Words.Drawing.Charts.ChartYValue, bubbleSize: number)
ParameterTypeDescription
indexnumber
xValueChartXValue
yValueChartYValue
bubbleSizenumber

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.

Examples

Shows how to insert data into a chart series.

let doc = new aw.Document();
let builder = new aw.DocumentBuilder(doc);

let shape = builder.insertChart(aw.Drawing.Charts.ChartType.Line, 432, 252);
let chart = shape.chart;
let series1 = chart.series.at(0);

// Clear X and Y values of the first series.
series1.clearValues();
// Populate the series with data.
series1.insert(0, aw.Drawing.Charts.ChartXValue.fromDouble(3));
series1.insert(1, aw.Drawing.Charts.ChartXValue.fromDouble(3), aw.Drawing.Charts.ChartYValue.fromDouble(10));
series1.insert(2, aw.Drawing.Charts.ChartXValue.fromDouble(3), aw.Drawing.Charts.ChartYValue.fromDouble(10));
series1.insert(3, aw.Drawing.Charts.ChartXValue.fromDouble(3), aw.Drawing.Charts.ChartYValue.fromDouble(10), 10);

doc.save(base.artifactsDir + "Charts.PopulateChartWithData.docx");

See Also