开发者问题收集

有没有办法将 react-chartjs-2 图表转换为 pdf?

2020-01-14
7154

我正在使用一个名为 reactChartJs2 的库,并且有一个提案使图表可下载,有没有办法将图表转换为 PDF 或任何其他格式?

2个回答

这是使用 react-chartjs-2 的示例代码 您需要安装:

npm i html2canvas

npm i jspdf

代码:

import React, { Component } from "react";
import ReactDOM from "react-dom";
import { Bar } from "react-chartjs-2";
import html2canvas from "html2canvas";
const pdfConverter = require("jspdf");

class Chart extends Component {
  cData = {
    labels: ["L 1", "L 2", "L 3", "L 4", "L 5"],
    datasets: [
      {
        label: "Label",
        data: [100, 150, 123, 170, 162],
        backgroundColor: ["red", "green", "yellow", "blue", "orange", "red"]
      }
    ]
  };

  div2PDF = e => {
    /////////////////////////////
    // Hide/show button if you need
    /////////////////////////////

    const but = e.target;
    but.style.display = "none";
    let input = window.document.getElementsByClassName("div2PDF")[0];

    html2canvas(input).then(canvas => {
      const img = canvas.toDataURL("image/png");
      const pdf = new pdfConverter("l", "pt");
      pdf.addImage(
        img,
        "png",
        input.offsetLeft,
        input.offsetTop,
        input.clientWidth,
        input.clientHeight
      );
      pdf.save("chart.pdf");
      but.style.display = "block";
    });
  };

  render() {
    return (
      <div>
        <div className="div2PDF">
          <Bar
            data={this.cData}
            options={{
              title: {
                display: true,
                text: "Chart to PDF Demo",
                fontSize: 32
              },
              legend: {
                display: true,
                position: "right"
              }
            }}
            height={200}
          />
        </div>
        <div>
          <button onClick={(e) => this.div2PDF(e)}>Export 2 PDF</button>
        </div>
      </div>
    );
  }
}

export default Chart;

ReactDOM.render(<Chart />, document.getElementById("root"));

答案输出: 此处

Babak Yaghoobi
2020-01-14

我收到一条错误消息,提示 pdfconverter 不是函数。我刚刚在顶部添加了 import jsPDF from "jspdf" ,而不是 const pdf = new pdfConverter("l", "pt");

我写了 const pdf = new jsPDF("l", "pt"); ,现在它可以正常工作了。

Prajwal m
2021-04-07