在 oracle apex 中将图表导出为 excel 或 pdf

发布于 2025-01-15 22:37:14 字数 104 浏览 1 评论 0原文

我有一个类型为“图表”的区域,该区域通过数据库查询获取数据并显示为面积图 想要一个按钮,当单击它时,图表数据会下载为 pdf 或 excel

我尝试使用报告查询,但我没有打印服务器

I have a region with type 'chart' and this region get data with a query from database and show as area chart
want to have a button that when click on it , the chart data downloaded as pdf or excel

I tried to use report queries but I cant have a print server

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人九事 2025-01-22 22:37:14

一个简单的选项(不需要任何额外的)是

  • 创建一个按钮(其标签是例如“打印”)

  • 创建一个按下按钮时触发的动态操作

  • 动态操作执行 JavaScript 代码,如下:

     window.print()
    
  • 运行页面,按“打印”按钮

这是结果:

在此处输入图像描述

A simple option (doesn't require anything additional) is to

  • create a button (its label is e.g. "Print")

  • create a dynamic action which fires when the button is pressed

  • dynamic action executes JavaScript code, this:

     window.print()
    
  • run the page, push the "Print" button

This is the result:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文