0

谁能给我一个如何使用 OpenTBS/TinyButStrong 创建 Excel 散点图的示例?是否有任何支持 excel 图表的商业/非商业 PHP excel 编写器?

非常感谢您的帮助。

感谢您的时间!

4

1 回答 1

0

使用 Ms Word 中的向导创建一个基本的 XY 图表。保存图表而不更改它。让价值观和设计。选择图表,然后在上下文菜单中选择“区域格式”或类似的东西。在“Alt Text”选项卡的“Title”区域中,输入“a nice chart”。保存模板。

在 PHP 端:

$template = 'demo_ms_word.docx'; $TBS->LoadTemplate($template);

$ChartNameOrNum = 'a nice chart'; // Title of the shape that embeds the chart
$SeriesNameOrNum = 1;
$NewValues = array( array( 1.5, 2.0, 3.2, 33), array(1.77, 2.88, 2.88, 2.99) );
$NewLegend = "OpenTBS is so strong";
$TBS->PlugIn(OPENTBS_CHART, $ChartNameOrNum, $SeriesNameOrNum, $NewValues, $NewLegend);

$TBS->Show(OPENTBS_FILE+TBS_EXIT, 'result.docx');

工作后,更改图表属性和数据。

于 2013-06-07T20:57:04.993 回答