在 Java 中管理演示文稿的图表数据系列

概述

图表将其绘制的数据存储在图表数据工作簿中。一个IChartSeries 表示一组相关的数值,系列中的每个IChartDataPoint 指向一个或多个工作簿单元格。IChartCategory 对象提供系列共享的标签或分组值。因此,系列名称、类别和点值连接到IChartDataCell 对象,而不是仅作为显示文本存储。

对于典型的类别图,默认工作簿使用第0行存放系列名称,第0列存放类别名称,其余单元格用于系列值。传递给IChartDataWorkbook.getCell 的工作表、行和列索引是从零开始的。此布局在使用默认数据创建图表时很有用,但不要假设每个现有图表都使用它。对于已加载的演示文稿,在更改工作簿值之前,请检查系列、类别和数据点引用的单元格。

图表设置有三种不同的范围:

当未显式设置点或系列填充时,图表样式和主题决定自动外观。当同时存在系列和点的格式设置时,点的格式设置优先适用于该点。

chart-series-powerpoint

设置图表系列重叠

IChartSeries.getOverlap 报告2D图表中条形或柱形的重叠程度,范围为 -100 到 100 百分比。它是对父系列组上设置的只读投影。使用IChartSeriesGroup.setOverlap 可更新该组中所有兼容系列。此选项适用于显示分组条形或柱形的图表类型;对组合图中不相关的系列组无影响。

以下示例为包含第一个系列的组设置重叠:

import com.aspose.slides.*;

final int firstSlideIndex = 0;
final int firstSeriesIndex = 0;
final byte overlapPercent = 30;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    // 新图表包含示例系列、类别和数值。
    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    IChartSeries series = chart.getChartData().getSeries().get_Item(firstSeriesIndex);
    series.getParentSeriesGroup().setOverlap(overlapPercent);

    presentation.save("series_overlap.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

结果如下:

The series overlap

更改系列填充颜色

使用IChartSeries.getFormat 为整个系列设置默认填充。如果某个点已经有显式填充,其IChartDataPoint.getFormat 设置会覆盖该点的系列填充。

以下示例为第一个系列应用纯蓝色填充:

import com.aspose.slides.*;
import java.awt.Color;

final int firstSlideIndex = 0;
final int firstSeriesIndex = 0;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    IChartSeries series = chart.getChartData().getSeries().get_Item(firstSeriesIndex);
    series.getFormat().getFill().setFillType(FillType.Solid);
    series.getFormat().getFill().getSolidFillColor().setColor(Color.BLUE);

    presentation.save("series_color.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

结果如下:

The color of the series

更改系列名称

系列名称存储在图表数据工作簿中,通常显示在图例中。在为聚簇柱形图创建的默认工作簿中,单元格 B1 位于第0行第1列,包含第一个系列的名称。下面示例中的命名常量明确了该结构:

import com.aspose.slides.*;

final int firstSlideIndex = 0;
final int worksheetIndex = 0;
final int seriesNameRowIndex = 0;
final int firstSeriesColumnIndex = 1;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    IChartDataWorkbook workbook = chart.getChartData().getChartDataWorkbook();
    IChartDataCell seriesNameCell = workbook.getCell(worksheetIndex, seriesNameRowIndex, firstSeriesColumnIndex);
    seriesNameCell.setValue("Revenue");

    presentation.save("series_name.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

您也可以更新IChartSeries.getName 已引用的单元格。此方法避免对现有图表假设特定的行列位置:

import com.aspose.slides.*;

final int firstSlideIndex = 0;
final int firstSeriesIndex = 0;
final int firstNameCellIndex = 0;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    IChartSeries series = chart.getChartData().getSeries().get_Item(firstSeriesIndex);
    IChartDataCell seriesNameCell = series.getName().getAsCells().get_Item(firstNameCellIndex);
    seriesNameCell.setValue("Revenue");

    presentation.save("series_name.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

结果如下:

The series name

获取自动系列填充颜色

IChartSeries.getAutomaticSeriesColor 返回根据系列索引和图表样式计算的颜色。这是当系列填充未显式定义时使用的颜色。调用该方法读取计算出的颜色;它不会分配新的填充。

以下示例打印每个默认系列的自动颜色:

import com.aspose.slides.*;
import java.awt.Color;

final int firstSlideIndex = 0;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    int seriesCount = chart.getChartData().getSeries().size();
    for (int seriesIndex = 0; seriesIndex < seriesCount; seriesIndex++) {
        IChartSeries series = chart.getChartData().getSeries().get_Item(seriesIndex);
        Color automaticColor = series.getAutomaticSeriesColor();
        System.out.println("Series " + seriesIndex + ": " + automaticColor);
    }
} finally {
    presentation.dispose();
}

默认图表样式的示例输出:

Series 0: java.awt.Color[r=79,g=129,b=189]
Series 1: java.awt.Color[r=192,g=80,b=77]
Series 2: java.awt.Color[r=155,g=187,b=89]

确切的颜色取决于图表样式和主题。

为图表系列设置负值填充颜色反转

对于条形、柱形和气泡系列,IChartSeries.setInvertIfNegative 可以使用不同的填充显示负值。将常规系列填充设为纯色,启用反转,并通过IChartSeries.getInvertedSolidFillColor 指定负值颜色。工作簿中的负数保持不变;只有显示颜色会改变。

以下示例用一个系列替换默认图表数据。工作表第0行包含系列名称,第0列包含类别名称,第1列包含数值:

import com.aspose.slides.*;
import java.awt.Color;

final int firstSlideIndex = 0;
final int worksheetIndex = 0;
final int headerRowIndex = 0;
final int categoryColumnIndex = 0;
final int firstSeriesColumnIndex = 1;
final int firstDataRowIndex = 1;

String[] categoryNames = { "Category 1", "Category 2", "Category 3" };
int[] seriesValues = { -20, 50, -30 };

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);
    IChartData chartData = chart.getChartData();
    IChartDataWorkbook workbook = chartData.getChartDataWorkbook();

    chartData.getSeries().clear();
    chartData.getCategories().clear();

    IChartDataCell seriesNameCell = workbook.getCell(worksheetIndex, headerRowIndex, firstSeriesColumnIndex, "Series 1");
    int chartType = chart.getType();
    IChartSeries series = chartData.getSeries().add(seriesNameCell, chartType);

    for (int categoryIndex = 0; categoryIndex < categoryNames.length; categoryIndex++) {
        int dataRowIndex = firstDataRowIndex + categoryIndex;
        String categoryName = categoryNames[categoryIndex];
        int seriesValue = seriesValues[categoryIndex];

        IChartDataCell categoryCell = workbook.getCell(worksheetIndex, dataRowIndex, categoryColumnIndex, categoryName);
        chartData.getCategories().add(categoryCell);

        IChartDataCell valueCell = workbook.getCell(worksheetIndex, dataRowIndex, firstSeriesColumnIndex, seriesValue);
        series.getDataPoints().addDataPointForBarSeries(valueCell);
    }

    Color automaticSeriesColor = series.getAutomaticSeriesColor();
    series.getFormat().getFill().setFillType(FillType.Solid);
    series.getFormat().getFill().getSolidFillColor().setColor(automaticSeriesColor);
    series.setInvertIfNegative(true);
    series.getInvertedSolidFillColor().setColor(Color.RED);

    presentation.save("inverted_solid_fill_color.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

结果如下:

The inverted solid fill color

您可以通过IChartDataPoint.setInvertIfNegative 为单个点启用反转。在下面的示例中,系列的反转被禁用,仅为选定的点启用。该点还被赋予负值,以便效果可见:

import com.aspose.slides.*;
import java.awt.Color;

final int firstSlideIndex = 0;
final int firstSeriesIndex = 0;
final int targetDataPointIndex = 2;
final int negativeValue = -30;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    IChartSeries series = chart.getChartData().getSeries().get_Item(firstSeriesIndex);
    Color automaticSeriesColor = series.getAutomaticSeriesColor();
    series.getFormat().getFill().setFillType(FillType.Solid);
    series.getFormat().getFill().getSolidFillColor().setColor(automaticSeriesColor);
    series.getInvertedSolidFillColor().setColor(Color.RED);
    series.setInvertIfNegative(false);

    IChartDataPoint dataPoint = series.getDataPoints().get_Item(targetDataPointIndex);
    dataPoint.getValue().getAsCell().setValue(negativeValue);
    dataPoint.setInvertIfNegative(true);

    presentation.save("data_point_invert_color_if_negative.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

清除特定数据点的数值

要使某一点为空而不删除其他点,请将其对应的工作簿单元格设为 null。对于柱形图,绘制的数值可通过IChartDataPoint.getValue 获取。数据点仍保留在相同的类别位置,但图表根据空值设置将其视为空白。

以下示例仅清除第一系列的第二个点:

import com.aspose.slides.*;

final int firstSlideIndex = 0;
final int firstSeriesIndex = 0;
final int targetDataPointIndex = 1;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 20, 20, 500, 200);

    IChartSeries series = chart.getChartData().getSeries().get_Item(firstSeriesIndex);
    IChartDataPoint dataPoint = series.getDataPoints().get_Item(targetDataPointIndex);
    dataPoint.getValue().getAsCell().setValue(null);

    presentation.save("clear_data_point_value.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

散点图使用单独的 X 和 Y 单元格,气泡图还使用大小单元格。仅清除表示要删除的值的单元格。若想保留其他点,请勿调用IChartDataPointCollection.clear;因为该方法会移除该系列的所有数据点。

控制空单元格的显示

空工作簿单元格表示缺失数据;包含 0 的单元格表示已知的数值。调用IChartDataCell.setValue 并传入 null 可使单元格为空。数值零始终保持为零,无论空单元格设置如何。

使用IChart.setDisplayBlanksAs 选择图表如何显示空单元格。此设置适用于整个图表。它改变空白的绘制方式,而不会将空工作簿单元格填充为零或插值。

下面的独立示例创建一个带有一个系列的折线图,清除第3天的数值,并分别使用每种模式保存同一图表。无需输入文件。IChartDataWorkbook 使用工作表0,第0列作为类别标签,第1列作为数值;第0行保存系列名称。最终数据为 10, 20, empty, 30, 40。

import com.aspose.slides.*;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(0);

    IChart chart = slide.getShapes().addChart(ChartType.LineWithMarkers, 40, 40, 640, 400);
    IChartData chartData = chart.getChartData();
    IChartDataWorkbook workbook = chartData.getChartDataWorkbook();

    chartData.getSeries().clear();
    chartData.getCategories().clear();

    IChartDataCell seriesNameCell = workbook.getCell(0, 0, 1, "Measurements");
    IChartSeries series = chartData.getSeries().add(seriesNameCell, chart.getType());
    int[] values = { 10, 20, 25, 30, 40 };

    for (int i = 0; i < values.length; i++) {
        IChartDataCell categoryCell = workbook.getCell(0, i + 1, 0, "Day " + (i + 1));
        chartData.getCategories().add(categoryCell);
        IChartDataCell valueCell = workbook.getCell(0, i + 1, 1, values[i]);
        series.getDataPoints().addDataPointForLineSeries(valueCell);
    }

    // 将第3天真正留空,同时保留其类别和数据点。
    workbook.getCell(0, 3, 1).setValue(null);

    int[] modes = { DisplayBlanksAsType.Gap, DisplayBlanksAsType.Zero, DisplayBlanksAsType.Span };
    String[] modeNames = { "Gap", "Zero", "Span" };
    for (int i = 0; i < modes.length; i++) {
        chart.setDisplayBlanksAs(modes[i]);
        presentation.save("empty_cells_" + modeNames[i] + ".pptx", SaveFormat.Pptx);
    }
} finally {
    presentation.dispose();
}

每个输出文件在保存前存储所分配的模式:empty_cells_Gap.pptx、empty_cells_Zero.pptx 和 empty_cells_Span.pptx。若只需一种版本,可在保存演示文稿前设置所需模式并仅保存一次,而不是遍历所有模式。

下面的比较显示了三个文件中相同的数据。第3天在工作簿中均为空:

折线图中相同的数据:Gap 在第3天断开线段,Zero 将线降至零,Span 将第2天和第4天连接起来。

可见效果取决于图表类型。折线图使三种模式都易于比较。条形图和柱形图没有连线跨越缺失的类别,因此 Span 无法产生上述连接段;缺失的柱形和零高的柱形也可能看起来相似。类似地,仅有标记的散点图没有连接线。不要指望每种图表类型都有三种不同的结果;请检查所使用图表的输出。

设置系列间隙宽度

间隙宽度是相邻条形或柱形簇之间的空白,表示为条形或柱形宽度的百分比。与重叠类似,它属于父系列组而非单个系列。对组调用IChartSeriesGroup.setGapWidth 一次即可。较大的值在簇之间创建更多空间,较小的值使它们更密集。

以下示例更改间隙宽度并仅保存最终的演示文稿:

import com.aspose.slides.*;

final int firstSlideIndex = 0;
final int firstSeriesIndex = 0;
final int gapWidthPercent = 30;

Presentation presentation = new Presentation();
try {
    ISlide slide = presentation.getSlides().get_Item(firstSlideIndex);

    IChart chart = slide.getShapes().addChart(ChartType.StackedColumn, 20, 20, 500, 200);

    IChartSeries series = chart.getChartData().getSeries().get_Item(firstSeriesIndex);
    series.getParentSeriesGroup().setGapWidth(gapWidthPercent);

    presentation.save("gap_width_30.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

结果如下:

间隙宽度

常见问题

哪些图表类型支持数据系列?

所有由ChartType 枚举表示的图表类型都使用图表数据,但它们的系列并不全部具有相同的值结构或设置。例如,类别图使用类别和数值,散点图使用 X 和 Y 值,气泡图还会添加气泡大小。使用与系列类型相匹配的数据点创建方法。重叠和间隙宽度等选项仅适用于兼容的条形或柱形组。

什么是图表系列组?

IChartSeriesGroup 包含共享组级绘图设置的兼容系列。组合图可以包含多个组,因此通过一个系列访问的组的更改不一定会影响图表中的所有系列。

新创建的图表是否包含默认数据?

是的。默认情况下,IShapeCollection.addChart 会创建示例系列、类别和数值。您可以编辑这些单元格,或在添加完全自定义的数据集之前清除系列和类别集合。也可以使用重载创建不带默认数据的图表。

图表对象如何与工作簿单元格关联?

系列名称、类别标签和数据点数值引用IChartDataWorkbook 中的单元格。更改被引用的单元格会更新相应的图表元素。构建自定义数据时,请保持类别行和系列值行对齐,以便每个点在预期的类别下绘制。

如何仅清除一个点而不是整个系列?

将相关的数值单元格设为 null,以保留该点的类别位置为空点。仅在想要删除该系列所有点时才使用IChartDataPointCollection.clear。如果您还删除了类别,请更新每个系列,使其数值仍与类别集合保持对齐。

空点如何显示?

结果取决于图表类型以及通过IChart.setDisplayBlanksAs 配置的值。支持的图表可以将空白显示为间隙、零值或连接相邻点。选择与演示文稿中缺失数据含义相匹配的设置。请参阅控制空单元格的显示获取完整示例和可视化比较。

负值如何格式化?

对于受支持的条形、柱形和气泡系列,调用IChartSeries.setInvertIfNegative 并通过IChartSeries.getInvertedSolidFillColor 设置返回的颜色。您可以使用IChartDataPoint.setInvertIfNegative 为单个点覆盖此行为。这些方法影响格式,而不改变存储的数值。

当系列和点都进行格式化时,哪个格式优先?

显式的数据点格式对该点具有优先权。其他点继续使用显式的系列格式,或在系列格式未定义时使用自动的图表样式和主题。组设置如重叠和间隙宽度控制布局,并不是点级别的格式覆盖。

图表可以包含的系列数量是否有限制?

Aspose.Slides 不对系列数量设定单独的固定上限。实际使用中,演示文稿文件的约束、可用内存、渲染时间以及图表可读性决定了实际可用的上限。

当柱形之间过于靠近或过于分散时应该如何调整?

对相应的父系列组调用IChartSeriesGroup.setGapWidth。增大数值以扩大簇之间的间距,减小数值则使簇更靠近。