真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Java怎么在PPT中添加混合圖表

使用Java怎么在PPT中添加混合圖表,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

創(chuàng)新互聯(lián)建站制作網(wǎng)站網(wǎng)頁(yè)找三站合一網(wǎng)站制作公司,專注于網(wǎng)頁(yè)設(shè)計(jì),成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè),網(wǎng)站設(shè)計(jì),企業(yè)網(wǎng)站搭建,網(wǎng)站開(kāi)發(fā),建網(wǎng)站業(yè)務(wù),680元做網(wǎng)站,已為1000+服務(wù),創(chuàng)新互聯(lián)建站網(wǎng)站建設(shè)將一如既往的為我們的客戶提供最優(yōu)質(zhì)的網(wǎng)站建設(shè)、網(wǎng)絡(luò)營(yíng)銷推廣服務(wù)!

Jar文件獲取及導(dǎo)入:

方法1:通過(guò)官網(wǎng)下載jar文件包。下載后,解壓文件,并將lib文件夾下的Spire.Presentation.jar導(dǎo)入java程序。參考如下導(dǎo)入效果:

使用Java怎么在PPT中添加混合圖表

方法2:通過(guò)maven倉(cāng)庫(kù)安裝導(dǎo)入??蓞⒖紝?dǎo)入方法。

Java代碼示例(供參考)

import com.spire.presentation.*;
import com.spire.presentation.charts.ChartType;
import com.spire.presentation.charts.IChart;
import com.spire.presentation.drawing.FillFormatType;
import java.awt.geom.Rectangle2D;
public class Chart {
  public static void main(String[] args) throws Exception{
    //創(chuàng)建PowerPoint文檔
    Presentation presentation = new Presentation();

    //添加一個(gè)柱狀圖
    Rectangle2D.Double rect = new  Rectangle2D.Double(60, 100, 600, 350);
    IChart chart = presentation.getSlides().get(0).getShapes().appendChart(ChartType.COLUMN_CLUSTERED, rect);

    //設(shè)置圖表名稱
    chart.getChartTitle().getTextProperties().setText("上半年銷量");
    chart.getChartTitle().getTextProperties().isCentered(true);
    chart.getChartTitle().setHeight(30);
    chart.hasTitle(true);

    //寫入圖表數(shù)據(jù)
    chart.getChartData().get(0,0).setText("月份");
    chart.getChartData().get(0,1).setText("銷量");
    chart.getChartData().get(0,2).setText("環(huán)比增長(zhǎng)(%)");
    chart.getChartData().get(1,0).setText("1月");
    chart.getChartData().get(1,1).setNumberValue(120);
    chart.getChartData().get(1,2).setNumberValue(12);
    chart.getChartData().get(2,0).setText("2月");
    chart.getChartData().get(2,1).setNumberValue(100);
    chart.getChartData().get(2,2).setNumberValue(10);
    chart.getChartData().get(3,0).setText("3月");
    chart.getChartData().get(3,1).setNumberValue(80);
    chart.getChartData().get(3,2).setNumberValue(9);
    chart.getChartData().get(4,0).setText("4月");
    chart.getChartData().get(4,1).setNumberValue(120);
    chart.getChartData().get(4,2).setNumberValue(15);
    chart.getChartData().get(5,0).setText("5月");
    chart.getChartData().get(5,1).setNumberValue(90);
    chart.getChartData().get(5,2).setNumberValue(11);
    chart.getChartData().get(6,0).setText("6月");
    chart.getChartData().get(6,1).setNumberValue(110);
    chart.getChartData().get(6,2).setNumberValue(10.5);

    //設(shè)置系列標(biāo)簽數(shù)據(jù)來(lái)源
    chart.getSeries().setSeriesLabel(chart.getChartData().get("B1", "C1"));

    //設(shè)置分類標(biāo)簽數(shù)據(jù)來(lái)源
    chart.getCategories().setCategoryLabels(chart.getChartData().get("A2", "A7"));

    //設(shè)置系列的數(shù)據(jù)來(lái)源
    chart.getSeries().get(0).setValues(chart.getChartData().get("B2", "B7"));
    chart.getSeries().get(1).setValues(chart.getChartData().get("C2", "C7"));
    chart.getSeries().get(1).getDataLabels().setLabelValueVisible(true);//設(shè)置顯示系列2的數(shù)據(jù)標(biāo)簽值
    chart.getSeries().get(1).setType(ChartType.LINE_MARKERS);//將系列2的圖表類型設(shè)置為折線圖
    chart.getSeries().get(1).setUseSecondAxis(true);//將系列2繪制在次坐標(biāo)軸
    chart.getSecondaryValueAxis().getMajorGridTextLines().setFillType(FillFormatType.NONE);//不顯示次坐標(biāo)軸的網(wǎng)格線

    //設(shè)置系列重疊
    chart.setOverLap(-30);

    //設(shè)置分類間距
    chart.setGapDepth(200);

    //保存文檔
    presentation.saveToFile("chart.pptx", FileFormat.PPTX_2013);
    presentation.dispose();
  }
}

圖表添加效果:

使用Java怎么在PPT中添加混合圖表

關(guān)于使用Java怎么在PPT中添加混合圖表問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。


本文標(biāo)題:使用Java怎么在PPT中添加混合圖表
當(dāng)前路徑:http://weahome.cn/article/ghccds.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部