如何在Pentaho Report Designer中为HTML代码生成PDF输出

时间:2019-03-25 06:24:36

标签: javascript html pentaho pentaho-report-designer

Pentaho PDF输出的HTML代码:

请帮助我在penthao PRPT pdf输出中运行html代码。

借助RTF属性,能够在HTML输出中达到相同的效果。

我们为什么需要:Java集成团队将与Pentaho Report设计人员共享HTML代码(图表对象)。报告设计者应接受html代码,并应将其作为该图表图像的PDF输出生成。

<!DOCTYPE HTML>
<html>
<head>  
<script>
window.onload = function () {

var chart = new CanvasJS.Chart("chartContainer", {
	animationEnabled: true,
	theme: "light2",
	title:{
		text: "Simple Line Chart"
	},
	axisY:{
		includeZero: false
	},
	data: [{        
		type: "line",       
		dataPoints: [
			{ y: 450 },
			{ y: 414},
			{ y: 520, indexLabel: "highest",markerColor: "red", markerType: "triangle" },
			{ y: 460 },
			{ y: 450 },
			{ y: 500 },
			{ y: 480 },
			{ y: 480 },
			{ y: 410 , indexLabel: "lowest",markerColor: "DarkSlateGrey", markerType: "cross" },
			{ y: 500 },
			{ y: 480 },
			{ y: 510 }
		]
	}]
});
chart.render();

}
</script>
</head>
<body>
<div id="chartContainer" style="height: 300px; width: 100%;"></div>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
</body>
</html>

0 个答案:

没有答案