- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 apache POI 和 openxmlformats,我正在构建一个带有条形图的 Excel。我制作条形图的方式是:
private static CTChart createBarChart(Chart chart, String dataSheet, ArrayList<Integer> cols, int lastRow, boolean seriesInCols) {
CTChart ctChart = ((XSSFChart) chart).getCTChart();
CTPlotArea ctPlotArea = ctChart.getPlotArea();
CTBarChart ctBarChart = ctPlotArea.addNewBarChart();
CTBoolean ctBoolean = ctBarChart.addNewVaryColors();
ctBoolean.setVal(true);
ctBarChart.addNewBarDir().setVal(cols.size() > 1 ? STBarDir.COL : STBarDir.BAR);
int idx = 0;
for (Integer c : cols) {
CTBarSer ctBarSer = ctBarChart.addNewSer();
CTSerTx ctSerTx = ctBarSer.addNewTx();
CTStrRef ctStrRef = ctSerTx.addNewStrRef();
ctStrRef.setF(new CellReference(dataSheet, 0, c, true, true).formatAsString());
ctBarSer.addNewIdx().setVal(idx++);
CTAxDataSource cttAxDataSource = ctBarSer.addNewCat();
ctStrRef = cttAxDataSource.addNewStrRef();
ctStrRef.setF(new AreaReference(new CellReference(dataSheet, 1, 0, true, true), new CellReference(dataSheet, lastRow, 0, true, true), SpreadsheetVersion.EXCEL2007)
.formatAsString());
CTNumDataSource ctNumDataSource = ctBarSer.addNewVal();
CTNumRef ctNumRef = ctNumDataSource.addNewNumRef();
ctNumRef.setF(new AreaReference(new CellReference(dataSheet, 1, c, true, true), new CellReference(dataSheet, lastRow, c, true, true), SpreadsheetVersion.EXCEL2007)
.formatAsString());
// at least the border lines in Libreoffice Calc ;-)
ctBarSer.addNewSpPr().addNewLn().addNewSolidFill().addNewSrgbClr().setVal(new byte[] { 0, 0, 0 });
}
// telling the BarChart that it has axes and giving them Ids
ctBarChart.addNewAxId().setVal(123456);
ctBarChart.addNewAxId().setVal(123457);
// cat axis
CTCatAx ctCatAx = ctPlotArea.addNewCatAx();
ctCatAx.addNewAxId().setVal(123456); // id of the cat axis
CTScaling ctScaling = ctCatAx.addNewScaling();
ctScaling.addNewOrientation().setVal(STOrientation.MIN_MAX);
ctCatAx.addNewDelete().setVal(false);
ctCatAx.addNewAxPos().setVal(STAxPos.B);
ctCatAx.addNewCrossAx().setVal(123457); // id of the val axis
ctCatAx.addNewTickLblPos().setVal(STTickLblPos.NEXT_TO);
// val axis
CTValAx ctValAx = ctPlotArea.addNewValAx();
ctValAx.addNewAxId().setVal(123457); // id of the val axis
ctScaling = ctValAx.addNewScaling();
ctScaling.addNewOrientation().setVal(STOrientation.MIN_MAX);
ctValAx.addNewDelete().setVal(false);
ctValAx.addNewAxPos().setVal(STAxPos.L);
ctValAx.addNewCrossAx().setVal(123456); // id of the cat axis
ctValAx.addNewTickLblPos().setVal(STTickLblPos.NEXT_TO);
// legend
if (cols.size() > 1) {
CTLegend ctLegend = ctChart.addNewLegend();
ctLegend.addNewLegendPos().setVal(STLegendPos.L);
ctLegend.addNewOverlay().setVal(false);
}
return ctChart;
}
但现在我需要像这样将目标线放入此图表中
但我不知道怎么做,也没有找到任何相关信息。
谢谢
最佳答案
这里的第一个问题是,您将如何使用 Excel 的 GUI 来完成此操作?
一种方法是添加散点图系列,其中两个数据点 X/Y 作为 0/TARGET 和 1/TARGET,通过直线链接并具有单独的轴。在单独的 X 轴中,最小值为 0,最大值为 1。这会导致 Y=TARGET 上出现垂直或水平线,具体取决于 X 轴是垂直还是水平。
我已将您的代码放入完整的示例中,并为此方法添加了代码。
启动 Excel 工作表是:
代码:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.*;
import org.apache.poi.xssf.usermodel.XSSFChart;
import org.apache.poi.ss.SpreadsheetVersion;
import org.openxmlformats.schemas.drawingml.x2006.chart.*;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.ArrayList;
class ExcelCharWithTargetLine {
private static CTChart createBarChart(XSSFChart chart, String dataSheet, ArrayList<Integer> cols, int lastRow, double target) {
CTChart ctChart = chart.getCTChart();
CTPlotArea ctPlotArea = ctChart.getPlotArea();
CTBarChart ctBarChart = ctPlotArea.addNewBarChart();
CTBoolean ctBoolean = ctBarChart.addNewVaryColors();
ctBoolean.setVal(true);
ctBarChart.addNewBarDir().setVal(cols.size() > 1 ? STBarDir.COL : STBarDir.BAR);
int idx = 0;
for (Integer c : cols) {
CTBarSer ctBarSer = ctBarChart.addNewSer();
CTSerTx ctSerTx = ctBarSer.addNewTx();
CTStrRef ctStrRef = ctSerTx.addNewStrRef();
ctStrRef.setF(new CellReference(dataSheet, 0, c, true, true).formatAsString());
ctBarSer.addNewIdx().setVal(idx++);
CTAxDataSource cttAxDataSource = ctBarSer.addNewCat();
ctStrRef = cttAxDataSource.addNewStrRef();
ctStrRef.setF(new AreaReference(
new CellReference(dataSheet, 1, 0, true, true),
new CellReference(dataSheet, lastRow, 0, true, true),
SpreadsheetVersion.EXCEL2007).formatAsString()
);
CTNumDataSource ctNumDataSource = ctBarSer.addNewVal();
CTNumRef ctNumRef = ctNumDataSource.addNewNumRef();
ctNumRef.setF(new AreaReference(
new CellReference(dataSheet, 1, c, true, true),
new CellReference(dataSheet, lastRow, c, true, true),
SpreadsheetVersion.EXCEL2007).formatAsString()
);
// at least the border lines in Libreoffice Calc ;-)
//ctBarSer.addNewSpPr().addNewLn().addNewSolidFill().addNewSrgbClr().setVal(new byte[] { 0, 0, 0 });
}
// telling the BarChart that it has axes and giving them Ids
ctBarChart.addNewAxId().setVal(123456);
ctBarChart.addNewAxId().setVal(123457);
// cat axis
CTCatAx ctCatAx = ctPlotArea.addNewCatAx();
ctCatAx.addNewAxId().setVal(123456); // id of the cat axis
CTScaling ctScaling = ctCatAx.addNewScaling();
ctScaling.addNewOrientation().setVal(STOrientation.MIN_MAX);
ctCatAx.addNewDelete().setVal(false);
ctCatAx.addNewAxPos().setVal(STAxPos.B);
ctCatAx.addNewCrossAx().setVal(123457); // id of the val axis
ctCatAx.addNewTickLblPos().setVal(STTickLblPos.NEXT_TO);
// val axis
CTValAx ctValAx = ctPlotArea.addNewValAx();
ctValAx.addNewAxId().setVal(123457); // id of the val axis
ctScaling = ctValAx.addNewScaling();
ctScaling.addNewOrientation().setVal(STOrientation.MIN_MAX);
ctValAx.addNewDelete().setVal(false);
ctValAx.addNewAxPos().setVal(STAxPos.L);
ctValAx.addNewCrossAx().setVal(123456); // id of the cat axis
ctValAx.addNewTickLblPos().setVal(STTickLblPos.NEXT_TO);
// target line
// line of a scatter chart from 0 (min) to 1 (max) having value of double target
CTScatterChart ctScatterChart = ctPlotArea.addNewScatterChart();
ctBoolean = ctScatterChart.addNewVaryColors();
ctBoolean.setVal(true);
CTScatterSer ctScatterSer = ctScatterChart.addNewSer();
ctScatterSer.addNewIdx().setVal(idx++);
ctScatterSer.addNewMarker().addNewSymbol().setVal(STMarkerStyle.NONE);
CTNumData ctNumData = ctScatterSer.addNewXVal().addNewNumLit();
ctNumData.addNewPtCount().setVal(2);
CTNumVal ctNumVal = ctNumData.addNewPt();
ctNumVal.setIdx(0);
if (cols.size() > 1) {
ctNumVal.setV("0"); // if STBarDir.COL then X axis is from 0 to 1
} else {
ctNumVal.setV("" + target); // if STBarDir.BAR then X axis is value axis
}
ctNumVal = ctNumData.addNewPt();
ctNumVal.setIdx(1);
if (cols.size() > 1) {
ctNumVal.setV("1");
} else {
ctNumVal.setV("" + target);
}
ctNumData = ctScatterSer.addNewYVal().addNewNumLit();
ctNumData.addNewPtCount().setVal(2);
ctNumVal = ctNumData.addNewPt();
ctNumVal.setIdx(0);
if (cols.size() > 1) {
ctNumVal.setV("" + target); // if STBarDir.COL then Y axis is value axis
} else {
ctNumVal.setV("0"); // if STBarDir.BAR then Y axis is from 0 to 1
}
ctNumVal = ctNumData.addNewPt();
ctNumVal.setIdx(1);
if (cols.size() > 1) {
ctNumVal.setV("" + target);
} else {
ctNumVal.setV("1");
}
ctScatterChart.addNewAxId().setVal(123458);
ctScatterChart.addNewAxId().setVal(123459);
ctValAx = ctPlotArea.addNewValAx();
ctValAx.addNewAxId().setVal(123458); // id of the X axis
ctScaling = ctValAx.addNewScaling();
ctScaling.addNewOrientation().setVal(STOrientation.MIN_MAX);
if (cols.size() > 1) {
ctScaling.addNewMax().setVal(1.0);
}
ctValAx.addNewDelete().setVal(true);
ctValAx.addNewAxPos().setVal(STAxPos.T);
ctValAx.addNewCrossAx().setVal(123459); // id of the Y axis
ctValAx.addNewTickLblPos().setVal(STTickLblPos.NONE);
ctValAx = ctPlotArea.addNewValAx();
ctValAx.addNewAxId().setVal(123459); // id of the Y axis
ctScaling = ctValAx.addNewScaling();
ctScaling.addNewOrientation().setVal(STOrientation.MIN_MAX);
if (cols.size() == 1) {
ctScaling.addNewMax().setVal(1.0);
}
ctValAx.addNewDelete().setVal(true);
ctValAx.addNewAxPos().setVal(STAxPos.R);
ctValAx.addNewCrossAx().setVal(123458); // id of the X axis
ctValAx.addNewTickLblPos().setVal(STTickLblPos.NONE);
// legend
if (cols.size() > 1) {
CTLegend ctLegend = ctChart.addNewLegend();
ctLegend.addNewLegendPos().setVal(STLegendPos.L);
// delete additional target line series legent entry
CTLegendEntry ctLegendEntry = ctLegend.addNewLegendEntry();
ctLegendEntry.addNewIdx().setVal(0);
ctLegendEntry.addNewDelete().setVal(true);
ctLegend.addNewOverlay().setVal(false);
}
return ctChart;
}
public static void main(String[] args) throws Exception {
Workbook workbook = WorkbookFactory.create(new FileInputStream("ExcelChart.xlsx"));
Sheet sheet = workbook.getSheetAt(0);
ArrayList<Integer> cols = new ArrayList<Integer>();
//cols.add(1);
cols.add(2);
//cols.add(3);
Drawing drawing = sheet.createDrawingPatriarch();
ClientAnchor anchor = null;
if (cols.size() > 1) {
anchor = drawing.createAnchor(0, 0, 0, 0, 0, 8, 10, 23);
} else {
anchor = drawing.createAnchor(0, 0, 0, 0, 0, 8, 5, 23);
}
Chart chart = drawing.createChart(anchor);
CTChart ctChart = ctChart = createBarChart((XSSFChart) chart, sheet.getSheetName(), cols, 6, 42.0);
workbook.write(new FileOutputStream("ExcelChartNew.xlsx"));
workbook.close();
}
}
结果:
注释:
此示例需要 FAQ-N10025 中提到的所有架构 ooxml-schemas-1.3.jar
的完整 jar。
这仅适用于 Excel,因为 OpenOffice 或 Libreoffice Calc 无法将系列设置为文字数值。
关于java - 使用 openxmlformats 在条形图中创建目标标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50772989/
我想在我的 android 应用程序中实现一个反馈/评级图表。(就像当你打开 google play 并检查应用程序的反馈时,有一个来自投票它的用户的彩色图表)任何人都可以帮助我如何开始那个?感谢您提
我正在尝试使用 LaTeX 制作条形图。到目前为止我一直不成功,所以任何人都可以帮助我,也许是最近项目的副本?如何使用 pstricks 制作条形图?我会很感激最简单的解决方案,因为我最近才开始使用
我有一个包含 6 个事件及其发生时间跨度的 csv 表。我的变量是开始日期、结束日期和事件 ID。我打算创建一个水平直方图/条形图可视化来显示时间范围,即某些类型的事件持续了多长时间。 X 轴应该有多
我想制作可以指定条形最小值的条形图(很像盒须图中的盒子)。条形图可以做到吗?我怀疑答案在 ggplot 中,但我找不到示例。 这是一些数据: X Jan F
我想使用以下数据来创建可视化: > dput(data) structure(c(1264L, 2190L, 2601L, 1441L, 1129L, 2552L, 1820L, 306L,
我有一个包含正值和负值的数据框。我想显示一个显示两个条形的条形图,一个条形显示正值的百分比,另一个条形图显示负值的百分比。 dummy = pd.DataFrame({'A' : [-4, -3, -
我正在尝试在栏中插入自定义文本,我搜索了很多线程,但仍然没有得到任何解决方案。然后我想减小 y 轴的步长。我已附上我的代码。 jQuery( document ).ready(function() {
我正在使用 pandas 来创建条形图。这是一个例子: df=pd.DataFrame(np.random.rand(10, 4), columns=['a', 'b', 'c', 'd']) df.
我想在python中制作一个分类图来表示几个变量的范围。我想也许我会使用条形图并为条形设置范围。这是我的条形图 import matplotlib.pyplot as plt import numpy
我有一个显示 3 个条形的堆叠百分比条形图。 JSFiddle:https://jsfiddle.net/Lr0bszj6/ 由于某种原因,条形之间有很多空间并且没有与标签对齐(只有中间一个)。 设置
我正在尝试使用 aChartEngine 将 GPS 数据(正在查看或正在使用的卫星)显示为条形图,但我没有在此 View 中显示任何数据。这是我的代码,所以你能告诉我我犯了什么错误吗? public
我正在使用 this chart implementation . 但是,它分散了我的数据,而不是相互堆叠。 我想在 1970 年堆叠我的第一个数组,在 1975 年堆叠第二个数组。换句话说,我希望有
我正在尝试用不同颜色为条形图中的各个条形着色,比如蓝色表示正,红色表示负。我在互联网上找不到任何有用的东西。我在下面的代码中发现每个条形图都根据第一个条形图的值着色,而不是为每个条形图单独设置颜色:
我刚刚转移到 pandas 0.20/matplotlib 2.0 python 3.6。 (共构成以下版本)。我用 pandas 来绘制条形图,因为 matplotlib 的级别总是太低。着色列的行
我正在尝试制作一个图,其中 x 轴是时间,y 轴是一个条形图,其中的条形图覆盖特定时间段,如下所示: ______________
我有一些非常基本的代码,它可以正常工作,除了所有内容都与顶部对齐...理想情况下,条形图应与底部对齐。我想我可以使用固定定位,因为尺寸是 50px x 50px 的平方,但我更喜欢“固定”少一点的东西
这是我用来 Dim ejex As String, ejey As String Dim graficos As String Worksheets("Sheet1").Activate ejex =
我有一个生成如下条形图的 gnuplot 脚本: 输入数据位于具有多列的文件中,每一列最终都构成图表中的一个集群(示例中显示了 2 个集群)。每个文件都构成图表中的一个条形(示例中有 9 个)。每个文
我正在为我的数据 movies 使用库 ggplot2movies 请记住,我指的是 mpaa 评级和用户评级,这是两个不同的事物。如果您不想加载 ggplot2movies 库,这里是相关数据的示例
有没有一种简单的方法可以使用Pandas DataFrame.plot(kind='bar')方法按列名指定条形颜色? 我有一个脚本,可以从目录中的几个不同数据文件生成多个DataFrame。例如,它
我是一名优秀的程序员,十分优秀!