chart.getSeries().add方法的第三个参数是个double[],不支持有空值吗?

var chart = shape.getChart();
double[] lstV = new double[]{1.1,2.4,5.6,0.2};
chart.getSeries().add(series.getValue(), categories, lstV);

chart.getSeries().add方法的第三个参数是个double[],不支持有空值吗?

@SupportDhorde,

您能否详细说明您正在使用哪个 Aspose for Java API? 因此,我们可以相应地评估和协助您。

aspose.words for java

double[] lstV = new double[]{1.1,2.4,5.6,null};里面包含空内容,
chart.getSeries().add方法的第三个参数是个double[],不支持有空值吗?

@SupportDhorde double 不能为 null。 您应该使用 Double.NaN 应该使用空/缺失值的地方。