Word .net get data point values

Hello,

Is there a way to get datapoint xValue and yValue from existing chart ?

I open an existing document and get existing chart like :

var shapes = doc.GetChildNodes(NodeType.Shape, true);
foreach (var shape in shapes.OfType<Shape>())
{
    if (shape.HasChart)
    {
        //I want to get datapoints xValue and yValue
        //shape.Chart.Series.First().DataPoints does not give any xValue or yValue
    }
}

@miniseb31 ChartDataPoint is not for getting values, but for specifying formatting of a concreate data point.
Unfortunately, currently there is no API to get or set X and Y values of chart series. This feature request is logged as WORDSNET-18468. We will keep you informed and let you know once it is available.

at least is it possible to get the minimum and maximum of series ?

@miniseb31 Unfortunately, no, there is also no way to get minimum and maximum values from the series. Currently Series allows work only with series formatting, but not with it’s data.

The issues you have found earlier (filed as WORDSNET-18468) have been fixed in this Aspose.Words for .NET 23.5 update also available on NuGet.