图例位置

图例定位

为了设置图例属性。请按照以下步骤操作:

  • 创建 Presentation 类的实例。
  • 获取幻灯片的引用。
  • 在幻灯片上添加图表。
  • 设置图例的属性。
  • 将演示文稿写入PPTX文件。

在下面给出的示例中,我们设置了图表图例的位置和大小。

  # 创建 Presentation 类的实例
  $pres = new Presentation();
  try {
    # 获取幻灯片的引用
    $slide = $pres->getSlides()->get_Item(0);
    # 在幻灯片上添加一个聚类柱状图
    $chart = $slide->getShapes()->addChart(ChartType::ClusteredColumn, 50, 50, 500, 500);
    # 设置图例属性
    $chart->getLegend()->setX(50 / $chart->getWidth());
    $chart->getLegend()->setY(50 / $chart->getHeight());
    $chart->getLegend()->setWidth(100 / $chart->getWidth());
    $chart->getLegend()->setHeight(100 / $chart->getHeight());
    # 将演示文稿写入磁盘
    $pres->save("Legend_out.pptx", SaveFormat::Pptx);
  } finally {
    if (!java_is_null($pres)) {
      $pres->dispose();
    }
  }

设置图例的字体大小

Aspose.Slides for PHP via Java 允许开发者设置图例的字体大小。请按照以下步骤操作:

  • 实例化 Presentation 类。
  • 创建默认图表。
  • 设置字体大小。
  • 设置最小轴值。
  • 设置最大轴值。
  • 将演示文稿写入磁盘。
  # 创建 Presentation 类的实例
  $pres = new Presentation();
  try {
    $chart = $pres->getSlides()->get_Item(0)->getShapes()->addChart(ChartType::ClusteredColumn, 50, 50, 600, 400);
    $chart->getLegend()->getTextFormat()->getPortionFormat()->setFontHeight(20);
    $chart->getAxes()->getVerticalAxis()->setAutomaticMinValue(false);
    $chart->getAxes()->getVerticalAxis()->setMinValue(-5);
    $chart->getAxes()->getVerticalAxis()->setAutomaticMaxValue(false);
    $chart->getAxes()->getVerticalAxis()->setMaxValue(10);
    $pres->save("output.pptx", SaveFormat::Pptx);
  } finally {
    if (!java_is_null($pres)) {
      $pres->dispose();
    }
  }

设置单个图例的字体大小

Aspose.Slides for PHP via Java 允许开发者设置单个图例条目的字体大小。请按照以下步骤操作:

  • 实例化 Presentation 类。
  • 创建默认图表。
  • 访问图例条目。
  • 设置字体大小。
  • 设置最小轴值。
  • 设置最大轴值。
  • 将演示文稿写入磁盘。
  # 创建 Presentation 类的实例
  $pres = new Presentation();
  try {
    $chart = $pres->getSlides()->get_Item(0)->getShapes()->addChart(ChartType::ClusteredColumn, 50, 50, 600, 400);
    $tf = $chart->getLegend()->getEntries()->get_Item(1)->getTextFormat();
    $tf->getPortionFormat()->setFontBold(NullableBool::True);
    $tf->getPortionFormat()->setFontHeight(20);
    $tf->getPortionFormat()->setFontItalic(NullableBool::True);
    $tf->getPortionFormat()->getFillFormat()->setFillType(FillType::Solid);
    $tf->getPortionFormat()->getFillFormat()->getSolidFillColor()->setColor(java("java.awt.Color")->BLUE);
    $pres->save("output.pptx", SaveFormat::Pptx);
  } finally {
    if (!java_is_null($pres)) {
      $pres->dispose();
    }
  }