Git Product home page Git Product logo

Comments (11)

BeckhamVinoth avatar BeckhamVinoth commented on June 22, 2024 3

beforePageContent: function(data) {
doc.setFontSize(12);
doc.setFont("courier");
doc.text("Content X " ,20, 15);
doc.text("Content Y" ,20, 15);
}
What am trying to do here is , Printing the Content Y in the next line of Content X , But it's getting Overlapped

from jspdf-autotable.

simonbengtsson avatar simonbengtsson commented on June 22, 2024 1

Aha! Make sure you use the doc.text function correctly. Its signature is like this jsPDF.text(x, y, text).

from jspdf-autotable.

BeckhamVinoth avatar BeckhamVinoth commented on June 22, 2024 1

Yes man , You are right . I just Misunderstood that . Thanks Buddy @simonbengtsson

from jspdf-autotable.

czegarram avatar czegarram commented on June 22, 2024

Btw, thanks for your library.

from jspdf-autotable.

simonbengtsson avatar simonbengtsson commented on June 22, 2024

What I did was to increase the top margin a bit and then write a title with the native jsPDF api. There is an example on how to do this in examples/example.js.

You might find support for this limited right now though. It is very much something I'm working on improving though!

from jspdf-autotable.

czegarram avatar czegarram commented on June 22, 2024

Thank for the advice. Another thing I realized is the support of unicode symbols inside a jsPDF doc.
You can't use for example: \uXXXX to refer symbols from UTF-8.
Btw, Good Work Here!

from jspdf-autotable.

simonbengtsson avatar simonbengtsson commented on June 22, 2024

No that is true, the issue can be tracked here . Swedish and German characters such as åäö seem to work fine though.

from jspdf-autotable.

simonbengtsson avatar simonbengtsson commented on June 22, 2024

Better support for this was released in version 1.0. An example "With content" also exist in /examples/examples.js.

from jspdf-autotable.

BeckhamVinoth avatar BeckhamVinoth commented on June 22, 2024

Hi Simon , How to add two sentences in pageBeforeContent ?
Ex : 1). content X
2) content Y .
is it possible huh ?

from jspdf-autotable.

simonbengtsson avatar simonbengtsson commented on June 22, 2024

Not sure what you mean. If you have a question about how to do something with the plugin it would be easier if you created a question on stackoverflow with more information. I actively monitor the jspdf-autotable tag.

from jspdf-autotable.

Krenabothu avatar Krenabothu commented on June 22, 2024

doc.text(400, 50, "Daily View");
doc.autoTable({
headStyles: { fontSize: 10, headerBackgroundColor:"red" },
backgroundColor:"red",
bodyStyles: { fontSize: 8 },
head: [filedNames],
body: dailyRows,
// options
// ...
});

doc.text("Weekly View", 400, doc.autoTable.previous.finalY + 10);
doc.autoTable({
headStyles: { fontSize: 10},
bodyStyles: { fontSize: 8},
head: [filedNames],
body: weeklyRows,
// options
// ...
});

from jspdf-autotable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.